27 lines
549 B
TypeScript
27 lines
549 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
/**
|
|
* Vite 环境变量类型定义
|
|
*/
|
|
interface ImportMetaEnv {
|
|
readonly VITE_APP_PORT: string;
|
|
readonly VITE_APP_BASE_API: string;
|
|
readonly VITE_APP_API_URL: string;
|
|
readonly VITE_APP_TITLE?: string;
|
|
readonly VITE_APP_TENANT_ENABLED?: string;
|
|
readonly VITE_MOCK_DEV_SERVER: boolean;
|
|
readonly VITE_BAIDU_MAP_AK?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
declare const __APP_INFO__: {
|
|
pkg: {
|
|
name: string;
|
|
version: string;
|
|
};
|
|
buildTimestamp: number;
|
|
};
|