12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
/** 构建期可注入的环境变量 */
|
|
interface ImportMetaEnv {
|
|
/** API 基地址;不设则用同源 /api/v1 */
|
|
readonly VITE_API_BASE?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|