1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00
portainer/postcss.config.js
Chaim Lev-Ari 0f33e4ae99
fix(wizard): align wizard grid (#5752)
* fix(wizard): align wizard grid [EE-1753]
2021-09-30 15:54:15 +13:00

8 lines
207 B
JavaScript

module.exports = ({ env }) => ({
plugins: {
// add vendor prefixes
autoprefixer: { browsers: 'last 2 versions' },
// minify the result
cssnano: env !== 'development' ? {} : false,
},
});