Skip to content

Commit 575b6e7

Browse files
clarkdoyyx990803
authored andcommitted
fix(ssr): render initial and used async css chunks (#7902)
compatibility with webpack 4 + mini CSS extraction close #7897
1 parent ae6dcd6 commit 575b6e7

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/server/template-renderer/index.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ export default class TemplateRenderer {
108108
}
109109

110110
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))
114114
return (
115115
// render links for css files
116116
(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('')
118118
: '') +
119119
// context.styles is a getter exposed by vue-style-loader which contains
120120
// the inline component styles collected during SSR
@@ -202,10 +202,10 @@ export default class TemplateRenderer {
202202

203203
renderScripts (context: Object): string {
204204
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))
207207
const needed = [initial[0]].concat(async || [], initial.slice(1))
208-
return needed.filter(({ file }) => isJS(file)).map(({ file }) => {
208+
return needed.map(({ file }) => {
209209
return `<script src="${this.publicPath}/${file}" defer></script>`
210210
}).join('')
211211
} else {

src/server/webpack-plugin/client.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const hash = require('hash-sum')
22
const uniq = require('lodash.uniq')
3-
import { isJS } from './util'
3+
import { isJS, isCSS } from './util'
44

55
export default class VueSSRClientPlugin {
66
constructor (options = {}) {
@@ -19,10 +19,10 @@ export default class VueSSRClientPlugin {
1919
const initialFiles = uniq(Object.keys(stats.entrypoints)
2020
.map(name => stats.entrypoints[name].assets)
2121
.reduce((assets, all) => all.concat(assets), [])
22-
.filter(isJS))
22+
.filter((file) => isJS(file) || isCSS(file)))
2323

2424
const asyncFiles = allFiles
25-
.filter(isJS)
25+
.filter((file) => isJS(file) || isCSS(file))
2626
.filter(file => initialFiles.indexOf(file) < 0)
2727

2828
const manifest = {

0 commit comments

Comments
 (0)