mastodon/postcss.config.js
TAKAHASHI Shuuji d68c12648c
Remove object-fit polyfill for the old Microsoft Edge (#22693)
* chore: remove object-fit-images and its postcss packages

* chore: update postcss config

* chore: remove object-fit-image from extra_polyfills.js

* chore: remove object-fit property check from load_polyfills.js
2023-01-05 13:32:02 +01:00

7 lines
125 B
JavaScript

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