|  | @@ -1,4 +1,5 @@
 | 
	
		
			
				|  |  |  import { isUrl } from "/@/utils/is";
 | 
	
		
			
				|  |  | +import { getConfig } from "/@/config";
 | 
	
		
			
				|  |  |  import { toRouteType } from "./types";
 | 
	
		
			
				|  |  |  import { openLink } from "/@/utils/link";
 | 
	
		
			
				|  |  |  import NProgress from "/@/utils/progress";
 | 
	
	
		
			
				|  | @@ -7,7 +8,6 @@ import { findIndex } from "lodash-unified";
 | 
	
		
			
				|  |  |  import { transformI18n } from "/@/plugins/i18n";
 | 
	
		
			
				|  |  |  import remainingRouter from "./modules/remaining";
 | 
	
		
			
				|  |  |  import { storageSession } from "/@/utils/storage";
 | 
	
		
			
				|  |  | -import { Title } from "../../public/serverConfig.json";
 | 
	
		
			
				|  |  |  import { useMultiTagsStoreHook } from "/@/store/modules/multiTags";
 | 
	
		
			
				|  |  |  import { usePermissionStoreHook } from "/@/store/modules/permission";
 | 
	
		
			
				|  |  |  import { Router, RouteMeta, createRouter, RouteRecordName } from "vue-router";
 | 
	
	
		
			
				|  | @@ -57,6 +57,7 @@ router.beforeEach((to: toRouteType, _from, next) => {
 | 
	
		
			
				|  |  |    if (!externalLink)
 | 
	
		
			
				|  |  |      to.matched.some(item => {
 | 
	
		
			
				|  |  |        if (!item.meta.title) return "";
 | 
	
		
			
				|  |  | +      const Title = getConfig().Title;
 | 
	
		
			
				|  |  |        if (Title)
 | 
	
		
			
				|  |  |          document.title = `${transformI18n(
 | 
	
		
			
				|  |  |            item.meta.title,
 |