1
0
Fork 1
forked from fedi/mastodon
mastodon/postcss.config.js
TAKAHASHI Shuuji 6821c0f6f7 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-02-12 18:01:57 -07:00

7 lines
125 B
JavaScript

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