11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_BACKEND_URL: string
|
|
readonly VITE_INSTANCE_URL: string
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
} |