veza/apps/web/src/vite-env.d.ts

18 lines
425 B
TypeScript
Raw Normal View History

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly VITE_WS_URL: string;
2025-12-13 02:34:34 +00:00
readonly VITE_STREAM_URL: string;
readonly VITE_UPLOAD_URL: string;
readonly VITE_APP_NAME: string;
readonly VITE_DEBUG: string;
readonly VITE_USE_MSW: string;
readonly VITE_FCM_VAPID_KEY: string;
// more env variables...
}
interface ImportMeta {
2025-12-13 02:34:34 +00:00
readonly env: ImportMetaEnv;
}