bbgo_origin/frontend/postcss.config.js
2021-01-24 14:14:25 +08:00

19 lines
295 B
JavaScript

module.exports = {
plugins: [
// 'tailwindcss',
'postcss-flexbugs-fixes',
[
'postcss-preset-env',
{
autoprefixer: {
flexbox: 'no-2009'
},
stage: 3,
features: {
'custom-properties': false
}
}
]
]
}