mirror of
https://gitee.com/dromara/go-view.git
synced 2024-11-30 02:38:30 +08:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
// 标题
|
|
VITE_GLOB_APP_TITLE: string;
|
|
// 端口
|
|
VITE_DEV_PORT: number;
|
|
// 开发地址
|
|
VITE_DEV_PATH: string
|
|
// 生产地址
|
|
VITE_PRO_PATH: string
|
|
} |