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>
12 lines
311 B
HTML
12 lines
311 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>DAK Zweitmeinungs-Portal</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|