We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d6d62f commit 7dd2b93Copy full SHA for 7dd2b93
examples/kitchen-sink/nuxt.config.js
@@ -2,9 +2,6 @@ const { join } = require('path')
2
module.exports = {
3
srcDir: __dirname,
4
build: {
5
- // remove postcss-cssnext due to https://github.com/MoOx/reduce-css-calc/issues/34
6
- postcss: [
7
- ],
8
extractCSS: true
9
},
10
modules: [
lib/module.js
@@ -17,6 +17,8 @@ module.exports = function nuxt7 (_options) {
17
this.options.mode = 'spa'
18
this.options.render.ssr = false
19
this.options.build.ssr = false
20
+ // disable postcss due to https://github.com/MoOx/reduce-css-calc/issues/34
21
+ this.options.build.postcss = false
22
23
// Customize build
24
this.extendBuild(config => extendConfig(config, options))
0 commit comments