Switch back to old "preserve whitespace" mode to fix missing  s

This commit is contained in:
Matt Isenhower 2020-08-24 08:49:14 -07:00
parent 4d5df86d09
commit f7c5e55481

View File

@ -27,6 +27,15 @@ module.exports = {
// return options;
// });
// },
chainWebpack: config => {
config.module
.rule('vue')
.use('vue-loader')
.tap(args => {
args.compilerOptions.whitespace = 'preserve'
})
},
devServer: {
contentBase: [
'./public',