1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-23 22:56:20 +09:00
mastodon/postcss.config.js

8 lines
144 B
JavaScript
Raw Normal View History

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