11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
/// <reference types="vite/client" />
|
|
interface ImportMetaEnv {
|
|
readonly VITE_OAUTH_REDIRECT_URL: string;
|
|
readonly VITE_API_BASE_URL: string;
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|