feat(worker): scaffold Vite+React PWA with token storage and typed API client

This commit is contained in:
Bas van Rossem
2026-06-17 16:03:41 +02:00
parent 35f9aa5574
commit 3511fd8a89
22 changed files with 1545 additions and 4 deletions

15
apps/worker/index.html Normal file
View File

@@ -0,0 +1,15 @@
<!doctype html>
<html lang="nl">
<head>
<meta charset="UTF-8" />
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="theme-color" content="#2563EB" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<title>SoleLog</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>