Merge pull request #3392 from yoyo837/minify-html

[edge] minify: true => fix gap between inline-block labels
This commit is contained in:
Sébastien Chopin 2018-05-31 10:20:09 +02:00 committed by GitHub
commit 8e3cb3448a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,6 +32,7 @@ export default class WebpackClientConfig extends WebpackBaseConfig {
new HTMLPlugin({
filename: 'index.ssr.html',
template: this.options.appTemplatePath,
minify: true,
inject: false // Resources will be injected using bundleRenderer
})
)
@ -41,6 +42,7 @@ export default class WebpackClientConfig extends WebpackBaseConfig {
new HTMLPlugin({
filename: 'index.spa.html',
template: this.options.appTemplatePath,
minify: true,
inject: true,
chunksSortMode: 'dependency'
}),