2
2
mirror of https://github.com/mastodon/mastodon synced 2025-04-12 00:56:38 +02:00
mastodon/postcss.config.js

8 lines
144 B
JavaScript

module.exports = ({ env }) => ({
plugins: [
'postcss-preset-env',
'autoprefixer',
env === 'production' ? 'cssnano' : '',
],
});