1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 07:06:34 +09:00
YuruToot/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' : '',
],
});