Files
demo-project/my-strapi-project/config/api.ts
T
2026-05-19 22:15:11 +02: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;