12 lines
366 B
JavaScript
12 lines
366 B
JavaScript
|
|
// https://github.com/michael-ciniawsky/postcss-load-config
|
|
|
|
module.exports = (ctx) => ({
|
|
plugins: {
|
|
'postcss-pxtorem': ctx.env !== 'production' ? { rootValue: 100, propWhiteList: [] } : false,
|
|
'postcss-url': {url: 'inline'},
|
|
'cssnano': { zindex: false, mergeIdents: false, discardUnused: false, autoprefixer: false, reduceIdents: false
|
|
},
|
|
}
|
|
})
|