Don't minify index.html

This commit is contained in:
James Lyne 2020-12-16 22:41:24 +00:00
parent a5d4b0c0d5
commit c5c8bb366a

View File

@ -2,6 +2,11 @@ module.exports = {
publicPath: '',
chainWebpack: config => {
config.plugin('html')
.tap(args => {
args[0].minify = false
return args
})
config.module
.rule('svg-sprite')
.use('svgo-loader')