提交
This commit is contained in:
26
apps/web-ele/src/preferences.ts
Normal file
26
apps/web-ele/src/preferences.ts
Normal 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',
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user