perf: perf menu mini style

This commit is contained in:
vben
2020-10-21 21:44:57 +08:00
parent 8b3a4d37a8
commit 66acb21edd
10 changed files with 84 additions and 27 deletions

View File

@@ -4,6 +4,9 @@ import getProjectSetting from '/@/settings/projectSetting';
import { getGlobEnvConfig, isDevMode } from '/@/utils/env';
import { getShortName } from '../../../build/getShortName';
import { warn } from '/@/utils/log';
const reg = /[a-zA-Z\_]*/;
const ENV_NAME = getShortName(import.meta.env);
const ENV = ((isDevMode()
@@ -16,6 +19,10 @@ const {
VITE_GLOB_API_URL_PREFIX,
} = ENV;
if (!reg.test(VITE_GLOB_APP_SHORT_NAME)) {
warn(`VITE_GLOB_APP_SHORT_NAME 变量只能是字符/下划线,请在环境变量中修改并重新运行。`);
}
export const useSetting = (): SettingWrap => {
// Take global configuration
const glob: Readonly<GlobConfig> = {