longyvfengyun
2024-05-30 65bfa203472373638e407778c6af06b38f666ad3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface ImportMetaEnv {
    /**
     * 应用标题
     */
    VITE_APP_TITLE: string;
    /**
     * 应用端口
     */
    VITE_APP_PORT: number;
    /**
     * API基础路径(反向代理)
     */
    VITE_APP_BASE_API: string;
}
 
interface ImportMeta {
    readonly env: ImportMetaEnv;
}