This commit is contained in:
ZhuJW
2026-04-22 13:40:01 +08:00
commit d6bf4684d2
1146 changed files with 96233 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
import { defineOverridesPreferences } from '@vben/preferences';
/**
* @description 项目配置文件
* 只需要覆盖项目中的一部分配置,不需要的配置不用覆盖,会自动使用默认配置
* !!! 更改配置后请清空缓存,否则可能不生效
*/
export const overridesPreferences = defineOverridesPreferences({
app: {
name: 'FST Data Factory',
accessMode: 'frontend',
loginExpiredMode: 'page',
},
sidebar: {
width: 220,
},
theme: {
builtinType: 'deep-green',
// colorPrimary: 'hsl(181 84% 32%)',
colorPrimary: 'hsl(245 82% 67%)',
mode: 'light',
},
transition: {
name: 'fade',
},
});