1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2024-12-31 20:45:20 +00:00
mastodon/postcss.config.js

7 lines
125 B
JavaScript
Raw Normal View History

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