From 59b3d9f472096ed4fb3bc06d20956d5bc0d5ac98 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Tue, 9 Dec 2025 11:30:16 -0800 Subject: [PATCH] fix: Revert to Tailwind v3 for Shadcn compatibility --- frontend/package.json | 5 ++--- frontend/postcss.config.js | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 89f90a2..f28c4aa 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -35,9 +35,8 @@ "eslint": "^8.55.0", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.4.5", - "postcss": "^8.5.6", - "tailwindcss": "^4.1.17", - "@tailwindcss/postcss": "^4.0.0", + "postcss": "^8.4.32", + "tailwindcss": "^3.4.1", "typescript": "^5.2.2", "vite": "^5.0.8", "vitest": "^1.0.0" diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js index d0ec925..d41ad63 100644 --- a/frontend/postcss.config.js +++ b/frontend/postcss.config.js @@ -1,6 +1,6 @@ export default { plugins: { - '@tailwindcss/postcss': {}, + tailwindcss: {}, autoprefixer: {}, }, }