mirror of
https://github.com/portainer/portainer.git
synced 2025-07-18 21:09:40 +02:00
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
module.exports = ({ env }) => ({
|
|
plugins: {
|
|
// add vendor prefixes
|
|
autoprefixer: { browsers: 'last 2 versions' },
|
|
// minify the result
|
|
cssnano: env !== 'development' ? {} : false,
|
|
},
|
|
});
|