2025-10-13 11:14:06 +08:00

25 lines
829 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ? 全局不动配置项 只做导出不做修改
// * 首页地址(默认)
export const HOME_URL: string = "/government";
// * 登录页地址(默认)
export const LOGIN_URL: string = "/login";
// export const PROJECT_URL: string = "/projectlogon";
// * 默认主题颜色
export const DEFAULT_PRIMARY: string = "#008BFF";
// * 路由白名单地址(必须是本地存在的路由 staticRouter.ts
export const ROUTER_WHITE_LIST: string[] = ["/500", "/projectlogon", "/compLogon"];
// * 高德地图 key
// export const AMAP_MAP_KEY: string = "142e51d55274a0140e838245345cf9ad";
export const AMAP_MAP_KEY: string = "021caa57125045d16a41f131ba0e7973 ";
// * 百度地图 key
export const BAIDU_MAP_KEY: string = "";
export const BASE_IMAGE_URL = import.meta.env.VITE_BASE_IMAGE_URL;