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.

27 lines
574B

  1. export interface GlobConfig {
  2. // Site title
  3. title: string;
  4. // Service interface url
  5. apiUrl: string;
  6. // Upload url
  7. uploadUrl?: string;
  8. // Service interface url prefix
  9. urlPrefix?: string;
  10. // Project abbreviation
  11. shortName: string;
  12. }
  13. export interface GlobEnvConfig {
  14. // Site title
  15. VITE_GLOB_APP_TITLE: string;
  16. // Service interface url
  17. VITE_GLOB_API_URL: string;
  18. // Service interface url prefix
  19. VITE_GLOB_API_URL_PREFIX?: string;
  20. // Project abbreviation
  21. VITE_GLOB_APP_SHORT_NAME: string;
  22. // Upload url
  23. VITE_GLOB_UPLOAD_URL?: string;
  24. }