- Migrate from Next.js App Router to Vite + React Router - Replace NEXT_PUBLIC_* env vars with VITE_* - Convert all pages to React Router structure - Remove BFF dependency, connect directly to Tracker - JWT auth with query param support in WebSocket - All components migrated with basic functionality - Ready for production deployment
14 lines
364 B
HTML
14 lines
364 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>web-client-vite</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|