Files
softclick-cms/config/api.ts
Zotov Ivan Yuryevich 981a01e8ef Initial commit from Strapi
2026-04-04 18:17:41 +03:00

12 lines
183 B
TypeScript

import type { Core } from '@strapi/strapi';
const config: Core.Config.Api = {
rest: {
defaultLimit: 25,
maxLimit: 100,
withCount: true,
},
};
export default config;