4
0
mirror of https://gitee.com/dromara/go-view.git synced 2025-08-03 00:01:45 +08:00
Files
go-view/types/vite-env.d.ts
2022-05-20 16:12:27 +08:00

10 lines
187 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
// 端口
VITE_DEV_PORT: string;
// 开发地址
VITE_DEV_PATH: string
// 生产地址
VITE_PRO_PATH: string
}