- Add tailwind.config.ts with shadcn/ui theme colors - Update globals.css with CSS variables for dark/light mode - Add utils.ts with cn() helper function - Add components.json for shadcn/ui CLI - Update postcss.config.mjs with autoprefixer - Exclude playwright config from tsconfig to fix build Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
419 B
JSON
21 lines
419 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "default",
|
|
"rsc": true,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "tailwind.config.ts",
|
|
"css": "src/app/globals.css",
|
|
"baseColor": "slate",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/lib/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"hooks": "@/hooks"
|
|
}
|
|
}
|