/* * @Description: 基础配置项 * @Autor: xiezhongbin * @Date: 2021-11-02 16:50:13 * @LastEditors: changjun * @LastEditTime: 2022-08-29 09:43:32 */ import type { appSettingInterface } from "../types/config"; import { LOGO_IMG } from './constant' export const appSetting: appSettingInterface = { title: "权限模块", menuMode: "vertical", theme: "dark", classics: "#108FEA", logo: LOGO_IMG, HomePath: '/monitoring' }; export default { tokenName: "Authorization", }; export * from './options' export * from './constant'