mirror of
https://github.com/Egonex-AI/Understand-Anything.git
synced 2026-06-22 10:58:03 +08:00
Tailwind v4's default source detection walks the nearest .git and collects tracked files via git ls-files. When the dashboard sources sit inside a gitignored subtree of an ancestor repo (e.g. the default marketplace install path ~/.claude/plugins/cache/, which is ignored by ~/.claude/.gitignore), detection returns 0 files and the Oxide engine skips all utility generation — the dashboard renders unstyled. Adding explicit @source directives is the supported Tailwind v4 escape hatch and is a no-op for installs where automatic detection works. Verified: built CSS bundle jumps from ~9 KB to ~55 KB and utility classes (.flex, .grid, .absolute, .w-full, .h-full) are present. Fixes #179