umami/postcss.config.js

18 lines
280 B
JavaScript
Raw Permalink Normal View History

2020-07-17 10:03:38 +02:00
module.exports = {
plugins: [
'postcss-flexbugs-fixes',
[
'postcss-preset-env',
{
autoprefixer: {
flexbox: 'no-2009',
},
stage: 3,
features: {
'custom-properties': false,
},
},
],
],
};