From 0769cd11fab008a875c01289097facff78fe862b Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Tue, 3 Mar 2026 14:52:19 +0700 Subject: [PATCH] fix: Use @tailwindcss/postcss for Tailwind 4 - Install @tailwindcss/postcss package - Update postcss.config.cjs to use new plugin - Required for Tailwind CSS v4 --- postcss.config.cjs | 1 - 1 file changed, 1 deletion(-) diff --git a/postcss.config.cjs b/postcss.config.cjs index 12a703d90..ee5f90b30 100644 --- a/postcss.config.cjs +++ b/postcss.config.cjs @@ -1,6 +1,5 @@ module.exports = { plugins: { tailwindcss: {}, - autoprefixer: {}, }, };