commerce/postcss.config.js
2021-03-19 15:39:57 -03:00

20 lines
326 B
JavaScript

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