mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
module.exports = ({ env }) => ({
|
|
plugins: {
|
|
autoprefixer: {},
|
|
'postcss-object-fit-images': {},
|
|
cssnano: env === 'production' ? {} : false,
|
|
},
|
|
});
|