You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import type { DeepPartial } from '@vben/types';
|
|
import type { Preferences } from '@vben-core/preferences';
|
|
|
|
/**
|
|
* @description 项目配置文件
|
|
* 只需要覆盖项目中的一部分配置,不需要的配置不用覆盖,会自动使用默认配置
|
|
*/
|
|
export const overridesPreferences: DeepPartial<Preferences> = {};
|