nuxt-community / express-template

Starter template for Nuxt 2 with Express.
https://codesandbox.io/s/github/nuxt-community/express-template
1.25k stars 239 forks source link

How to disable minification for html and css #93

Closed vkatsar closed 3 years ago

vkatsar commented 7 years ago

Hello everybody.

I am trying to disable minification for html and css with no success. I tried to use the generate - minify option from the nuxt documentation but nothing happened.

Can anybody help ?

This question is available on Nuxt.js community (#c73)
josteph commented 5 years ago

nuxt.config.js

    html: {
      minify: {
        collapseWhitespace: false,
        collapseBooleanAttributes: true,
        decodeEntities: true,
        minifyCSS: false, // this
        minifyJS: false, // this
        processConditionalComments: true,
        removeEmptyAttributes: true,
        removeRedundantAttributes: true,
        trimCustomFragments: true,
        useShortDoctype: true
      }
    },