|
1234567891011121314151617181920212223242526 |
-
- export interface GlobConfig {
- // Site title
- title: string;
- // Service interface url
- apiUrl: string;
- // Upload url
- uploadUrl?: string;
- // Service interface url prefix
- urlPrefix?: string;
- // Project abbreviation
- 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_URL_PREFIX?: string;
- // Project abbreviation
- VITE_GLOB_APP_SHORT_NAME: string;
- // Upload url
- VITE_GLOB_UPLOAD_URL?: string;
- }
|