From a14f4c300ee94e441658bfbd2ae2a377f50a6980 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Tue, 9 Dec 2025 11:25:56 -0800 Subject: [PATCH] fix: Upgrade to @tailwindcss/postcss for v4 compatibility --- frontend/package.json | 1 + frontend/postcss.config.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/package.json b/frontend/package.json index 6cdf265..89f90a2 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -37,6 +37,7 @@ "eslint-plugin-react-refresh": "^0.4.5", "postcss": "^8.5.6", "tailwindcss": "^4.1.17", + "@tailwindcss/postcss": "^4.0.0", "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 d41ad63..d0ec925 100644 --- a/frontend/postcss.config.js +++ b/frontend/postcss.config.js @@ -1,6 +1,6 @@ export default { plugins: { - tailwindcss: {}, + '@tailwindcss/postcss': {}, autoprefixer: {}, }, }