projectSetting.ts 233 B

12345678910
  1. /* eslint-disable */
  2. import type { ProjectConfig } from '@/types/config'
  3. import { CacheTypeEnum } from '@/utils/cache/cacheEnum'
  4. const setting: ProjectConfig = {
  5. permissionCacheType: CacheTypeEnum.LOCAL
  6. }
  7. export default setting