mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 19:58:07 +01:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
module.exports = ({ env }) => ({
|
|
plugins: [
|
|
'postcss-preset-env',
|
|
'autoprefixer',
|
|
env === 'production' ? 'cssnano' : '',
|
|
],
|
|
});
|