Set up Vite + React 19 + TypeScript, Tauri v2, Tailwind v4, shadcn/ui (dark theme), and all core frontend dependencies (Zustand, TanStack Query/Table/Virtual, CodeMirror, lucide-react). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
291 B
HTML
13 lines
291 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Tusk</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|