1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-01 04:55:30 +00:00
mastodon/postcss.config.js
TAKAHASHI Shuuji d68c12648c
Remove object-fit polyfill for the old Microsoft Edge ()
* 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,
},
});