11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
/** 为 '1' 时 api 层返回内置 mock 数据,不请求后端 */
|
|
readonly VITE_MOCK: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|