mirror of
https://github.com/complexcaresolutions/dak.c2s.git
synced 2026-03-17 17:13:42 +00:00
Scaffold the DAK Zweitmeinungs-Portal frontend with: - Vite 7.3 + React 19 + TypeScript 5.9 - Tailwind CSS v4 with @tailwindcss/vite plugin - shadcn/ui (new-york style, neutral base color) with button, input, label, card components - Path alias @/* -> src/* configured in tsconfig and vite - API proxy: /api/* -> http://localhost:8000 - Core deps: react-router-dom, axios, recharts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
462 B
JSON
23 lines
462 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "new-york",
|
|
"rsc": false,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "",
|
|
"css": "src/index.css",
|
|
"baseColor": "neutral",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"iconLibrary": "lucide",
|
|
"rtl": false,
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/lib/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"hooks": "@/hooks"
|
|
},
|
|
"registries": {}
|
|
}
|