mirror of
https://git.asonix.dog/ceralor/mastodon.git
synced 2025-10-12 21:34:27 +00:00
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
module.exports = ({ env }) => ({
|
|
plugins: {
|
|
autoprefixer: {},
|
|
'postcss-object-fit-images': {},
|
|
cssnano: env === 'production' ? {} : false,
|
|
},
|
|
});
|