mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 16:28:08 +01:00
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
module.exports = ({ env }) => ({
|
|
plugins: {
|
|
autoprefixer: {},
|
|
'postcss-object-fit-images': {},
|
|
cssnano: env === 'production' ? {} : false,
|
|
},
|
|
});
|