fix: replace recursive ** globs in @source with explicit per-directory paths

Tailwind v4 @source does not support ** recursive globs — each
directory level must be listed explicitly.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-14 16:26:25 +02:00
parent 30d30f68fb
commit ea7f0551f0
+13 -3
View File
@@ -1,9 +1,19 @@
@import "tailwindcss";
@import "flag-icons/css/flag-icons.min.css";
@source "../app/**/*.{ts,tsx}";
@source "../components/**/*.{ts,tsx}";
@source "../lib/**/*.{ts,tsx}";
@source "*.{ts,tsx}";
@source "../app/groups/*.{ts,tsx}";
@source "../app/history/*.{ts,tsx}";
@source "../app/players/[name]/*.{ts,tsx}";
@source "../app/search/*.{ts,tsx}";
@source "../app/stats/*.{ts,tsx}";
@source "../app/teams/[slug]/*.{ts,tsx}";
@source "../app/tournaments/[year]/*.{ts,tsx}";
@source "../components/*.{ts,tsx}";
@source "../lib/*.{ts,tsx}";
@source "../lib/db/*.{ts,tsx}";
@source "../lib/graphql/*.{ts,tsx}";
@source "../lib/graphql/resolvers/*.{ts,tsx}";
@theme inline {
--color-bg: #040d08;