ll-package
Version:
30 lines (28 loc) • 668 B
TypeScript
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
webSocketUrl: string
filePreviewServer: string
// dataVUrl: string
// reportServer: string
// report: 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
VITE_GLOB_WEBSOCKET_URL: string
}