buster/postcss.config.js

10 lines
193 B
JavaScript
Raw Permalink Normal View History

2018-12-04 00:15:57 +00:00
module.exports = function(ctx) {
return {
plugins: {
autoprefixer: {},
cssnano:
ctx.env === 'production' ? {zindex: false, discardUnused: false} : false
}
};
};