diff --git a/packages/playground/html/index.html b/packages/playground/html/index.html
index 7320ff2b097db0..783cad93172f7a 100644
--- a/packages/playground/html/index.html
+++ b/packages/playground/html/index.html
@@ -5,3 +5,6 @@
Hello
+
+
+
diff --git a/packages/vite/src/node/plugins/html.ts b/packages/vite/src/node/plugins/html.ts
index ed4250f1965869..ac06e5d5954cde 100644
--- a/packages/vite/src/node/plugins/html.ts
+++ b/packages/vite/src/node/plugins/html.ts
@@ -246,6 +246,7 @@ export function buildHtmlPlugin(config: ResolvedConfig): Plugin {
const s = new MagicString(html)
const assetUrls: AttributeNode[] = []
const scriptUrls: ScriptAssetsUrl[] = []
+ const styleUrls: ScriptAssetsUrl[] = []
let inlineModuleIndex = -1
let everyScriptIsAsync = true
@@ -338,8 +339,13 @@ export function buildHtmlPlugin(config: ResolvedConfig): Plugin {
if (!isExcludedUrl(url)) {
if (node.tag === 'link' && isCSSRequest(url)) {
// CSS references, convert to import
- js += `\nimport ${JSON.stringify(url)}`
- shouldRemove = true
+ const importExpression = `\nimport ${JSON.stringify(url)}`
+ styleUrls.push({
+ url,
+ start: node.loc.start.offset,
+ end: node.loc.end.offset
+ })
+ js += importExpression
} else {
assetUrls.push(p)
}
@@ -469,6 +475,25 @@ export function buildHtmlPlugin(config: ResolvedConfig): Plugin {
}
}
+ // ignore if its url can't be resolved
+ const resolvedStyleUrls = await Promise.all(
+ styleUrls.map(async (styleUrl) => ({
+ ...styleUrl,
+ resolved: await this.resolve(styleUrl.url, id)
+ }))
+ )
+ for (const { start, end, url, resolved } of resolvedStyleUrls) {
+ if (resolved == null) {
+ config.logger.warnOnce(
+ `\n${url} doesn't exist at build time, it will remain unchanged to be resolved at runtime`
+ )
+ const importExpression = `\nimport ${JSON.stringify(url)}`
+ js = js.replace(importExpression, '')
+ } else {
+ s.remove(start, end)
+ }
+ }
+
processedHtml.set(id, s.toString())
// inject module preload polyfill only when configured and needed