From fde8556ea70043db5e01d7be8264274c1106666b Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 29 Dec 2020 19:58:42 -0600 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20minify=20js=20and=20css=20insid?= =?UTF-8?q?e=20html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nuxt.config.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/nuxt.config.js b/nuxt.config.js index 7b6f456..528ea60 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -284,7 +284,13 @@ export default { ** Build configuration */ build: { - html: { minify: { collapseWhitespace: true } }, + html: { + minify: { + minifyCSS: false, + minifyJS: false, + collapseWhitespace: true + } + }, /* ** You can extend webpack config here */