17 lines
425 B
TypeScript
17 lines
425 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL: string;
|
|
readonly VITE_WS_URL: string;
|
|
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 {
|
|
readonly env: ImportMetaEnv;
|
|
}
|