智能控制中心,出版发布

This commit is contained in:
BBIT-Kai
2025-05-09 18:07:26 +08:00
commit f6f2a71d09
1374 changed files with 116035 additions and 0 deletions
+45
View File
@@ -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,
},
});