edtech / apps /web /src /vite-env.d.ts
CognxSafeTrack
fix(security): audit fixes — Stripe webhook scope, fail-fast secrets, prisma singleton, worker auth, Zod validation, WA number env var
c8a4f4b
raw
history blame contribute delete
242 Bytes
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly VITE_CLIENT_URL: string;
readonly VITE_WHATSAPP_NUMBER: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}