1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-12 13:48:35 +09:00
YuruToot/postcss.config.js

7 lines
125 B
JavaScript
Raw Normal View History

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