ref 路由生成方式调整为后台生成和去除mock

This commit is contained in:
DaxPay
2024-07-02 16:22:50 +08:00
parent 37ee147249
commit 40dda3d4e4
276 changed files with 1551 additions and 19426 deletions

12
types/config.d.ts vendored
View File

@@ -151,12 +151,14 @@ export interface GlobConfig {
shortName: string
}
export interface GlobEnvConfig {
// Site title
// 项目名称
VITE_GLOB_APP_TITLE: string
// Service interface url
// 接口地址
VITE_GLOB_API_URL: string
// Service interface url prefix
// 请求超时时间
VITE_GLOB_API_TIMEOUT: number
// 接口前缀
VITE_GLOB_API_URL_PREFIX?: string
// Upload url
VITE_GLOB_UPLOAD_URL?: string
// 终端类型
VITE_GLOB_APP_CLIENT: string
}