2024-06-02 10:20:15 +08:00
|
|
|
|
import type { DeepPartial } from '@vben/types';
|
|
|
|
|
import type { Preferences } from '@vben-core/preferences';
|
2024-06-01 23:15:29 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description 项目配置文件
|
|
|
|
|
* 只需要覆盖项目中的一部分配置,不需要的配置不用覆盖,会自动使用默认配置
|
|
|
|
|
*/
|
2024-06-02 23:46:18 +08:00
|
|
|
|
export const overridesPreferences: DeepPartial<Preferences> = {};
|