From 37056ff8a416158c7aaff12aa46c5e6a4e3ec00a Mon Sep 17 00:00:00 2001 From: brasse b Date: Fri, 10 Apr 2026 14:21:31 +0200 Subject: [PATCH] fix: add postcss.config.js so Tailwind CSS is actually compiled Without this file Vite has no PostCSS plugins configured, so the @tailwind base/components/utilities directives in main.css are silently ignored and the built CSS file contains no styles at all. Co-Authored-By: Claude Sonnet 4.6 --- frontend/postcss.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 frontend/postcss.config.js diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js new file mode 100644 index 0000000..2e7af2b --- /dev/null +++ b/frontend/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}