mastodon/postcss.config.js

8 lines
162 B
JavaScript
Raw Permalink Normal View History

module.exports = ({ env }) => ({
plugins: {
autoprefixer: {},
'postcss-object-fit-images': {},
cssnano: env === 'production' ? {} : false,
},
});