2024-07-23 00:03:59 +08:00
|
|
|
|
import { defineOverridesPreferences } from '@vben/preferences';
|
2024-06-01 23:15:29 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @description 项目配置文件
|
|
|
|
|
|
* 只需要覆盖项目中的一部分配置,不需要的配置不用覆盖,会自动使用默认配置
|
2024-11-06 23:03:33 +08:00
|
|
|
|
* !!! 更改配置后请清空缓存,否则可能不生效
|
2024-06-01 23:15:29 +08:00
|
|
|
|
*/
|
2024-07-10 21:20:11 +08:00
|
|
|
|
export const overridesPreferences = defineOverridesPreferences({
|
|
|
|
|
|
// overrides
|
2024-07-31 00:29:15 +08:00
|
|
|
|
app: {
|
2025-03-20 12:34:02 +08:00
|
|
|
|
/** 后端路由模式 */
|
|
|
|
|
|
accessMode: 'backend',
|
2024-07-31 00:29:15 +08:00
|
|
|
|
name: import.meta.env.VITE_APP_TITLE,
|
2025-03-26 20:27:47 +08:00
|
|
|
|
enableRefreshToken: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
footer: {
|
2025-04-19 19:37:02 +08:00
|
|
|
|
/** 默认关闭 footer 页脚,因为有一定遮挡 */
|
|
|
|
|
|
enable: false,
|
|
|
|
|
|
fixed: false,
|
2025-03-26 20:27:47 +08:00
|
|
|
|
},
|
|
|
|
|
|
copyright: {
|
|
|
|
|
|
companyName: import.meta.env.VITE_APP_TITLE,
|
2025-12-18 17:19:40 +08:00
|
|
|
|
companySiteLink: 'https://www.vs-cushwake.com/',
|
2024-07-31 00:29:15 +08:00
|
|
|
|
},
|
2025-12-23 10:35:09 +08:00
|
|
|
|
logo: {
|
|
|
|
|
|
/** Logo 图片地址 */
|
|
|
|
|
|
source: '/logo.svg',
|
|
|
|
|
|
/** Logo 图片适应方式 */
|
|
|
|
|
|
fit: 'contain',
|
|
|
|
|
|
},
|
2025-12-22 16:21:08 +08:00
|
|
|
|
theme: {
|
|
|
|
|
|
/** 主题模式:'light' 为浅色模式,'dark' 为深色模式,'auto' 为跟随系统 */
|
|
|
|
|
|
mode: 'light',
|
|
|
|
|
|
},
|
2024-07-10 21:20:11 +08:00
|
|
|
|
});
|