20 lines
561 B
TypeScript
Raw Normal View History

2023-03-04 09:16:33 +08:00
// ? 全局不动配置项 只做导出不做修改
// * 首页地址(默认)
export const HOME_URL: string = "/home/index";
// * 登录页地址(默认)
export const LOGIN_URL: string = "/login";
// * 默认主题颜色
2023-03-06 11:13:57 +08:00
export const DEFAULT_PRIMARY: string = "#008BFF";
2023-03-04 09:16:33 +08:00
// * 路由白名单地址(必须是本地存在的路由 staticRouter.ts
export const ROUTER_WHITE_LIST: string[] = ["/500"];
// * 高德地图 key
export const AMAP_MAP_KEY: string = "";
// * 百度地图 key
export const BAIDU_MAP_KEY: string = "";