-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Closed
Labels
Description
I'm trying to add some PostCSS plugins. Currently trying to get pxtorem working, but my compiled CSS is unchanged. Here's the relevant config:
module.exports = {
css: [
{ src: '~assets/scss/main.scss', lang: 'scss' }
],
build: {
postcss: [
require('postcss-pxtorem')({
propList: ['*']
})
]
}
}