mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
20 lines
321 B
JavaScript
20 lines
321 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'tailwindcss',
|
|
'postcss-nesting',
|
|
'postcss-flexbugs-fixes',
|
|
[
|
|
'postcss-preset-env',
|
|
{
|
|
autoprefixer: {
|
|
flexbox: 'no-2009',
|
|
},
|
|
stage: 3,
|
|
features: {
|
|
'custom-properties': false,
|
|
},
|
|
},
|
|
],
|
|
],
|
|
}
|