mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
19 lines
302 B
JavaScript
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,
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|