1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 14:37:20 +00:00
mastodon/postcss.config.js

8 lines
162 B
JavaScript
Raw Normal View History

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