Hi @vadimsg
You should give the build.postcss
option directly in your nuxt.config.js
:
module.exports = {
build: {
postcss: [
require('autoprefixer')({
browsers: ['> 5%']
})
]
}
}
With the latest RC, this worked for me:
postcss: {
'postcss-cssnext': {
browsers: ['last 2 versions', 'ie >= 9']
}
},
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
Hi @vadimsg
You should give the
build.postcss
option directly in yournuxt.config.js
: