mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-14 17:25:02 +01:00
18 lines
280 B
JavaScript
18 lines
280 B
JavaScript
|
module.exports = {
|
||
|
plugins: [
|
||
|
'postcss-flexbugs-fixes',
|
||
|
[
|
||
|
'postcss-preset-env',
|
||
|
{
|
||
|
autoprefixer: {
|
||
|
flexbox: 'no-2009',
|
||
|
},
|
||
|
stage: 3,
|
||
|
features: {
|
||
|
'custom-properties': false,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
};
|