- Replace @tailwind directives with @import "tailwindcss" - Switch PostCSS plugin to @tailwindcss/postcss - Add @theme inline block mapping CSS vars to v4 theme tokens - Move accordion keyframes/animations to globals.css - Remove tailwind.config.ts and tailwindcss-animate (no longer needed) - Update components.json to clear config path Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
396 B
JSON
21 lines
396 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "default",
|
|
"rsc": true,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "",
|
|
"css": "app/globals.css",
|
|
"baseColor": "zinc",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/lib/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"hooks": "@/hooks"
|
|
}
|
|
}
|