14 lines
324 B
TypeScript
14 lines
324 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
readonly VITE_API_URL: string
|
||
|
|
readonly VITE_API_BASE_URL: string
|
||
|
|
readonly VITE_APP_TITLE: string
|
||
|
|
readonly VITE_APP_VERSION: string
|
||
|
|
readonly VITE_ENVIRONMENT: string
|
||
|
|
// more env variables...
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv
|
||
|
|
}
|