You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- 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;
- }
|