1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-24 15:16:19 +09:00
mastodon/postcss.config.js

7 lines
118 B
JavaScript
Raw Normal View History

module.exports = ({ env }) => ({
2023-03-15 12:01:10 +09:00
plugins: [
'autoprefixer',
env === 'production' ? 'cssnano' : '',
],
});