Don’t minify js and css inside html

This commit is contained in:
Sam Carlton 2020-12-29 19:58:42 -06:00
parent 90445505bb
commit fde8556ea7

View file

@ -284,7 +284,13 @@ export default {
** Build configuration ** Build configuration
*/ */
build: { build: {
html: { minify: { collapseWhitespace: true } }, html: {
minify: {
minifyCSS: false,
minifyJS: false,
collapseWhitespace: true
}
},
/* /*
** You can extend webpack config here ** You can extend webpack config here
*/ */