2026-04-21 22:07:29 +08:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
|
readonly VITE_API_BASE_URL?: string
|
2026-04-24 10:42:11 +08:00
|
|
|
readonly BASE_URL: string
|
2026-04-21 22:07:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
|
}
|