2023-03-07 06:19:05 +00:00
|
|
|
/// <reference types="vite/client" />
|
2023-03-24 22:48:45 +00:00
|
|
|
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
readonly VITE_BACKEND_URL: string
|
|
|
|
readonly VITE_INSTANCE_URL: string
|
|
|
|
// more env variables...
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
}
|