Files
dax-pay-h5/types/config.d.ts
2025-03-27 22:11:13 +08:00

21 lines
406 B
TypeScript

export interface GlobConfig {
title: string
titleCN: string
apiUrl: string
shortName: string
urlPrefix?: string
}
export interface GlobEnvConfig {
// 标题
VITE_GLOB_APP_TITLE: string
// 中文标题
VITE_GLOB_APP_TITLE_CN: string
// 接口地址
VITE_GLOB_API_URL: string
// 接口前缀
VITE_GLOB_API_URL_PREFIX?: string
// 项目简称
VITE_GLOB_APP_SHORT_NAME: string
}