智能控制中心,出版发布
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
import { defineOverridesPreferences } from '@vben/preferences';
|
||||
|
||||
/**
|
||||
* @description 项目配置文件
|
||||
* 只需要覆盖项目中的一部分配置,不需要的配置不用覆盖,会自动使用默认配置
|
||||
* !!! 更改配置后请清空缓存,否则可能不生效
|
||||
*/
|
||||
export const overridesPreferences = defineOverridesPreferences({
|
||||
// overrides
|
||||
app: {
|
||||
name: import.meta.env.VITE_APP_TITLE,
|
||||
layout: 'header-sidebar-nav',
|
||||
},
|
||||
theme: {
|
||||
mode: 'light',
|
||||
radius: '0.75',
|
||||
},
|
||||
breadcrumb: {
|
||||
hideOnlyOne: true,
|
||||
styleType: 'background',
|
||||
},
|
||||
copyright: {
|
||||
enable: false,
|
||||
},
|
||||
shortcutKeys: {
|
||||
globalLockScreen: false,
|
||||
},
|
||||
sidebar: {
|
||||
collapsed: false,
|
||||
fixedButton: true,
|
||||
},
|
||||
transition: {
|
||||
name: 'fade-up',
|
||||
},
|
||||
widget: {
|
||||
lockScreen: false,
|
||||
notification: false,
|
||||
},
|
||||
navigation: {
|
||||
accordion: false,
|
||||
},
|
||||
tabbar: {
|
||||
middleClickToClose: true,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user