umami/postcss.config.js

18 lines
280 B
JavaScript
Raw Normal View History

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