Initial production-ready Lucozade audit dashboard

This commit is contained in:
2026-08-06 08:03:32 -04:00
commit edd0af342e
33 changed files with 9209 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly BASE_URL: string;
readonly VITE_SUPABASE_URL: string;
readonly VITE_SUPABASE_ANON_KEY: string;
readonly VITE_N8N_AUTH_WEBHOOK_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}