From 01522cf482510e13d3cc659e41639469c283f8fc Mon Sep 17 00:00:00 2001 From: Joakim Svensson Date: Wed, 21 Jan 2026 19:37:34 +0000 Subject: [PATCH] Fix: Update Tailwind CSS 4 PostCSS configuration --- 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 87ae072..455c8ea 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -25,6 +25,7 @@ "globals": "^16.5.0", "postcss": "^8.5.6", "tailwindcss": "^4.1.18", + "@tailwindcss/postcss": "^4.0.0", "vite": "^7.2.4" } } diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js index 2e7af2b..14502dc 100644 --- a/frontend/postcss.config.js +++ b/frontend/postcss.config.js @@ -1,6 +1,6 @@ export default { plugins: { - tailwindcss: {}, + "@tailwindcss/postcss": {}, autoprefixer: {}, }, }