bbgo_origin/frontend/postcss.config.js
2022-06-11 08:57:54 +08:00

19 lines
302 B
JavaScript

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