mastodon/postcss.config.js

13 lines
229 B
JavaScript
Raw Permalink Normal View History

2019-12-02 16:33:04 +01:00
module.exports = {
plugins: [
require('postcss-import'),
require('postcss-flexbugs-fixes'),
require('postcss-preset-env')({
autoprefixer: {
2020-02-27 13:48:21 +01:00
flexbox: 'no-2009',
2019-12-02 16:33:04 +01:00
},
2020-02-27 13:48:21 +01:00
stage: 3,
}),
],
};