feat(admin): scaffold Vite+React admin workspace

This commit is contained in:
Bas van Rossem
2026-06-17 18:56:28 +02:00
parent 02b7522b87
commit 682a9dce44
17 changed files with 219 additions and 0 deletions

9
apps/admin/src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}