preferences.ts 326 B

12345678
  1. import type { DeepPartial } from '@vben/types';
  2. import type { Preferences } from '@vben-core/preferences';
  3. /**
  4. * @description 项目配置文件
  5. * 只需要覆盖项目中的一部分配置,不需要的配置不用覆盖,会自动使用默认配置
  6. */
  7. export const overridesPreferences: DeepPartial<Preferences> = {};