Initial commit from Strapi

This commit is contained in:
nicwands
2026-05-26 14:34:18 -04:00
commit db078bc9d3
22 changed files with 19543 additions and 0 deletions

11
config/api.ts Normal file
View File

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