Hey guys!
Is there a way to set a different size limit depending on what file is uploaded to the media library? This is my code today but it sets a limit to all files and I just want to limit png files.
config/middlewares.js
module.exports = [
"strapi::errors",
"strapi::security",
"strapi::cors",
"strapi::poweredBy",
"strapi::logger",
"strapi::query",
{
name: "strapi::body",
config: {
formLimit: "256mb", // modify form body
jsonLimit: "256mb", // modify JSON body
textLimit: "256mb", // modify text body
formidable: {
maxFileSize: 10 * 1024 * 1024, // multipart data, modify here limit of uploaded file size
},
},
},
"strapi::session",
"strapi::favicon",
"strapi::public",
];