Mangane/postcss.config.js
2020-03-27 19:35:00 -05:00

8 lines
162 B
JavaScript

module.exports = ({ env }) => ({
plugins: {
autoprefixer: {},
'postcss-object-fit-images': {},
cssnano: env === 'production' ? {} : false,
},
});