mirror of
https://github.com/kremalicious/umami.git
synced 2024-10-31 23:35:32 +01:00
19 lines
302 B
JavaScript
19 lines
302 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'postcss-rtlcss',
|
|
'postcss-flexbugs-fixes',
|
|
[
|
|
'postcss-preset-env',
|
|
{
|
|
autoprefixer: {
|
|
flexbox: 'no-2009',
|
|
},
|
|
stage: 3,
|
|
features: {
|
|
'custom-properties': false,
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|