12 lines
276 B
TypeScript
12 lines
276 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_BACKEND_DOMAIN: string
|
|
readonly VITE_INSTANCE_DOMAIN: string
|
|
readonly VITE_HTTPS: string
|
|
// more env variables...
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
} |