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 <noreply@anthropic.com>
This commit is contained in:
2026-04-10 14:21:31 +02:00
parent 542762e441
commit 37056ff8a4

View File

@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}