portainer/postcss.config.js

9 lines
204 B
JavaScript
Raw Permalink Normal View History

2018-11-26 14:25:00 +00:00
module.exports = ({ env }) => ({
plugins: {
// add vendor prefixes
autoprefixer: { browsers: 'last 2 versions' },
// minify the result
cssnano: env === 'production' ? {} : false
}
});