diff --git a/postcss.config.mjs b/postcss.config.mjs index 1a69fd2..137bced 100644 --- a/postcss.config.mjs +++ b/postcss.config.mjs @@ -1,8 +1,9 @@ /** @type {import('postcss-load-config').Config} */ const config = { - plugins: { - tailwindcss: {}, - }, + plugins: { + '@tailwindcss/postcss': {}, + autoprefixer: {}, + }, }; export default config;