0
0
Fork 0

Update PostCSS dependencies (#23835)

This commit is contained in:
Nick Schonning 2023-03-14 23:01:10 -04:00 committed by GitHub
parent a471e1c48f
commit 15fdd94e2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 330 additions and 670 deletions

View file

@ -1,6 +1,6 @@
module.exports = ({ env }) => ({
plugins: {
autoprefixer: {},
cssnano: env === 'production' ? {} : false,
},
plugins: [
'autoprefixer',
env === 'production' ? 'cssnano' : '',
],
});