diff --git a/postcss.config.js b/postcss.config.js index 33ad091..2048076 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,17 @@ module.exports = { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, -} + plugins: [ + 'tailwindcss', + [ + 'postcss-preset-env', + { + autoprefixer: { + flexbox: 'no-2009', + }, + stage: 3, + features: { + 'custom-properties': false, + }, + }, + ], + ], +} \ No newline at end of file