You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
55 lines
1.1 KiB
/*
|
|
* @Author: your name
|
|
* @Date: 2022-01-04 11:14:17
|
|
* @LastEditTime: 2022-03-30 09:17:40
|
|
* @LastEditors: your name
|
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
* @FilePath: \TunnelPlatform-V3\src\settings.js
|
|
*/
|
|
module.exports = {
|
|
/**
|
|
* 侧边栏主题 深色主题theme-dark,浅色主题theme-light
|
|
*/
|
|
sideTheme: 'theme-jihe',
|
|
|
|
/**
|
|
* 是否系统布局配置
|
|
*/
|
|
showSettings: false,
|
|
|
|
/**
|
|
* 是否显示顶部导航
|
|
*/
|
|
topNav: false,
|
|
|
|
/**
|
|
* 是否显示 tagsView
|
|
*/
|
|
tagsView: false,
|
|
|
|
/**
|
|
* 是否固定头部
|
|
*/
|
|
fixedHeader: false,
|
|
|
|
/**
|
|
* 是否显示logo
|
|
*/
|
|
sidebarLogo: false,
|
|
|
|
/**
|
|
* 是否显示动态标题
|
|
*/
|
|
dynamicTitle: false,
|
|
/**
|
|
* 是否显示天气信息
|
|
*/
|
|
weatherView:false,
|
|
/**
|
|
* @type {string | array} 'production' | ['production', 'development']
|
|
* @description Need show err logs component.
|
|
* The default is only used in the production env
|
|
* If you want to also use it in dev, you can pass ['production', 'development']
|
|
*/
|
|
errorLog: 'production'
|
|
}
|
|
|