lolosia-web/typings/env.d.ts

13 lines
264 B
TypeScript
Raw Normal View History

2023-02-02 16:07:38 +08:00
declare global {
interface ImportMetaEnv {
readonly VITE_APP_BASE_URL: string
readonly VITE_APP_IMAGE_URL: string
readonly VITE_APP_ENV: string
// 更多环境变量...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
}
export {}