Configure shadcn aliases and regenerate the Button component with the tw: utility prefix so its styles are emitted by Tailwind.
26 lines
629 B
JSON
26 lines
629 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "radix-nova",
|
|
"rsc": true,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "",
|
|
"css": "src/app/styles/tailwind.css",
|
|
"baseColor": "neutral",
|
|
"cssVariables": true,
|
|
"prefix": "tw"
|
|
},
|
|
"iconLibrary": "lucide",
|
|
"rtl": false,
|
|
"aliases": {
|
|
"components": "@/app/_components/shadcn/ui",
|
|
"utils": "@/app/_components/shadcn/libs/utils",
|
|
"ui": "@/app/_components/shadcn/ui",
|
|
"lib": "@/app/_components/shadcn/libs",
|
|
"hooks": "@/app/_components/shadcn/hooks"
|
|
},
|
|
"menuColor": "default",
|
|
"menuAccent": "subtle",
|
|
"registries": {}
|
|
}
|