mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 11:48:42 +02:00
- Add fake vite.config.ts to support shadcn CLI detection - Configure path aliases (@/*) in tsconfig files - Add components.json for shadcn configuration - Install shadcn dependencies (clsx, tailwind-merge, etc.) - Add Button component and replace MessageInput buttons - Update CSS with shadcn design tokens Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
463 B
JSON
23 lines
463 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "new-york",
|
|
"rsc": false,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "",
|
|
"css": "src/renderer/src/styles/index.css",
|
|
"baseColor": "zinc",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"iconLibrary": "lucide",
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/lib/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"hooks": "@/hooks"
|
|
},
|
|
"registries": {}
|
|
}
|