1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2024-12-28 03:03:27 +00:00
mastodon/postcss.config.js
2023-03-15 04:01:10 +01:00

7 lines
118 B
JavaScript

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