Skip to content

Commit f3757eb

Browse files
atinuxyyx990803
authored andcommitted
feat: Add defer to body scripts (#5704)
* fix: prefetch should not have `as` attribute * feat: Add `async` to body script tags * Use defer instead of async * Use defer instead of async
1 parent 05195b8 commit f3757eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/server/template-renderer/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export default class TemplateRenderer {
209209
const async = this.getUsedAsyncFiles(context)
210210
const needed = [initial[0]].concat(async || [], initial.slice(1))
211211
return needed.filter(isJS).map(file => {
212-
return `<script src="${this.publicPath}/${file}"></script>`
212+
return `<script src="${this.publicPath}/${file}" defer></script>`
213213
}).join('')
214214
} else {
215215
return ''

test/ssr/ssr-template.spec.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,10 @@ describe('SSR: template option', () => {
238238
// state should be inlined before scripts
239239
`<script>window.${options.stateKey || '__INITIAL_STATE__'}={"a":1}</script>` +
240240
// manifest chunk should be first
241-
`<script src="/manifest.js"></script>` +
241+
`<script src="/manifest.js" defer></script>` +
242242
// async chunks should be before main chunk
243-
`<script src="/0.js"></script>` +
244-
`<script src="/main.js"></script>` +
243+
`<script src="/0.js" defer></script>` +
244+
`<script src="/main.js" defer></script>` +
245245
`</body></html>`
246246

247247
createClientManifestAssertions(true)

0 commit comments

Comments
 (0)