Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

23 lignes
528 B

  1. module.exports = [
  2. 'strapi::errors',
  3. 'strapi::security',
  4. 'strapi::cors',
  5. 'strapi::poweredBy',
  6. 'strapi::logger',
  7. 'strapi::query',
  8. {
  9. name: "strapi::body",
  10. config: {
  11. formLimit: "400mb", // modify form body
  12. jsonLimit: "400mb", // modify JSON body
  13. textLimit: "400mb", // modify text body
  14. formidable: {
  15. maxFileSize: 400 * 1024 * 1024, // multipart data, modify here limit of uploaded file size
  16. },
  17. },
  18. },
  19. 'strapi::session',
  20. 'strapi::favicon',
  21. 'strapi::public',
  22. ];