mirror of
https://github.com/strapi/strapi.git
synced 2026-05-03 16:22:30 +00:00
12 lines
183 B
TypeScript
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;
|