From ea7f0551f0eecfbe45e96485469b56cea5c1c4b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 14 Jun 2026 16:26:25 +0200 Subject: [PATCH] fix: replace recursive ** globs in @source with explicit per-directory paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tailwind v4 @source does not support ** recursive globs — each directory level must be listed explicitly. Co-Authored-By: Claude Sonnet 4.6 --- app/globals.css | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/app/globals.css b/app/globals.css index 85b5a48..b6eb2d6 100644 --- a/app/globals.css +++ b/app/globals.css @@ -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;