12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE?: string
|
|
readonly VITE_ADMIN_BASENAME?: string
|
|
readonly VITE_FRONTEND_BASE_URL?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|