- Initialize bun project with all frontend/backend dependencies - Configure Vite with TanStack Router plugin, React, and Tailwind v4 - Create Hono server with health check and static file serving - Set up TanStack Router file-based routes with root layout - Add Drizzle config, Biome linter, and proper .gitignore Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
301 B
HTML
13 lines
301 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>GearBox</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/client/main.tsx"></script>
|
|
</body>
|
|
</html>
|