@@ -108,13 +108,13 @@ export default class TemplateRenderer {
108
108
}
109
109
110
110
renderStyles ( context : Object ) : string {
111
- const cssFiles = this . clientManifest
112
- ? this . clientManifest . all . filter ( isCSS )
113
- : [ ]
111
+ const initial = this . preloadFiles || [ ]
112
+ const async = this . getUsedAsyncFiles ( context ) || [ ]
113
+ const cssFiles = initial . concat ( async ) . filter ( ( { file } ) => isCSS ( file ) )
114
114
return (
115
115
// render links for css files
116
116
( cssFiles . length
117
- ? cssFiles . map ( file => `<link rel="stylesheet" href="${ this . publicPath } /${ file } ">` ) . join ( '' )
117
+ ? cssFiles . map ( ( { file } ) => `<link rel="stylesheet" href="${ this . publicPath } /${ file } ">` ) . join ( '' )
118
118
: '' ) +
119
119
// context.styles is a getter exposed by vue-style-loader which contains
120
120
// the inline component styles collected during SSR
@@ -202,10 +202,10 @@ export default class TemplateRenderer {
202
202
203
203
renderScripts ( context : Object ) : string {
204
204
if ( this . clientManifest ) {
205
- const initial = this . preloadFiles
206
- const async = this . getUsedAsyncFiles ( context )
205
+ const initial = this . preloadFiles . filter ( ( { file } ) => isJS ( file ) )
206
+ const async = ( this . getUsedAsyncFiles ( context ) || [ ] ) . filter ( ( { file } ) => isJS ( file ) )
207
207
const needed = [ initial [ 0 ] ] . concat ( async || [ ] , initial . slice ( 1 ) )
208
- return needed . filter ( ( { file } ) => isJS ( file ) ) . map ( ( { file } ) => {
208
+ return needed . map ( ( { file } ) => {
209
209
return `<script src="${ this . publicPath } /${ file } " defer></script>`
210
210
} ) . join ( '' )
211
211
} else {
0 commit comments