Files
citpl_cms_react_express_pos…/strapi-cms/config/api.ts
T

17 lines
278 B
TypeScript

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