Skip to content

Commit 1dba285

Browse files
authoredFeb 18, 2023
fix(html): rewrite assets url in <noscript> (#11764)
1 parent 70729c0 commit 1dba285

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed
 

‎packages/vite/src/node/plugins/html.ts

+1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ export async function traverseHtml(
169169
// lazy load compiler
170170
const { parse } = await import('parse5')
171171
const ast = parse(html, {
172+
scriptingEnabled: false, // parse inside <noscript>
172173
sourceCodeLocationInfo: true,
173174
onParseError: (e: ParserError) => {
174175
handleParseError(e, html, filePath)

‎playground/assets/__tests__/assets.spec.ts

+7
Original file line numberDiff line numberDiff line change
@@ -409,3 +409,10 @@ test.skip('url() contains file in publicDir, as inline style', async () => {
409409
// (I built the playground to verify)
410410
expect(await getBg('.inline-style-public')).toContain(iconMatch)
411411
})
412+
413+
test.runIf(isBuild)('assets inside <noscript> is rewrote', async () => {
414+
const indexHtml = readFile('./dist/foo/index.html')
415+
expect(indexHtml).toMatch(
416+
/<img class="noscript" src="\/foo\/assets\/asset-\w+\.png" \/>/,
417+
)
418+
})

‎playground/assets/index.html

+6
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,12 @@ <h3>style in svg</h3>
314314
/>
315315
</g>
316316
</svg>
317+
318+
<h3>assets in noscript</h3>
319+
<noscript>
320+
<img class="noscript" src="./nested/asset.png" />
321+
</noscript>
322+
317323
<link rel="stylesheet" href="asset/style.css" />
318324
<div class="relative-css">link style</div>
319325
<div class="relative-js"></div>

0 commit comments

Comments
 (0)
Please sign in to comment.