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:
+13
-3
@@ -1,9 +1,19 @@
|
|||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
@import "flag-icons/css/flag-icons.min.css";
|
@import "flag-icons/css/flag-icons.min.css";
|
||||||
|
|
||||||
@source "../app/**/*.{ts,tsx}";
|
@source "*.{ts,tsx}";
|
||||||
@source "../components/**/*.{ts,tsx}";
|
@source "../app/groups/*.{ts,tsx}";
|
||||||
@source "../lib/**/*.{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 {
|
@theme inline {
|
||||||
--color-bg: #040d08;
|
--color-bg: #040d08;
|
||||||
|
|||||||
Reference in New Issue
Block a user