|
@@ -23,9 +23,10 @@ export const useGlobSetting = (): Readonly<GlobConfig> => {
|
|
|
|
|
|
// 短标题:替换shortName的下划线为空格
|
|
|
const shortTitle = VITE_GLOB_APP_SHORT_NAME.replace(/_/g, " ");
|
|
|
+ const title = VITE_GLOB_APP_TITLE.replace(/_/g, " ");
|
|
|
// Take global configuration
|
|
|
const glob: Readonly<GlobConfig> = {
|
|
|
- title: VITE_GLOB_APP_TITLE,
|
|
|
+ title:title,
|
|
|
domainUrl: VITE_GLOB_DOMAIN_URL,
|
|
|
apiUrl: VITE_GLOB_API_URL,
|
|
|
shortName: VITE_GLOB_APP_SHORT_NAME,
|