commerce/site/postcss.config.js
2022-04-20 15:29:34 +05:00

21 lines
346 B
JavaScript

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