mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +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,
|
|
},
|
|
});
|