Hi again!
I've been having trouble uploading files in production (DO Droplet). I get an error "Your request was too large to submit successfully".
The file is a 1.4M image,
I have this in my `payload.config.js``
{
upload: {
limits: {
fileSize: 5000000,
},
},
express: {
json: {
limit: 5000000,
},
},
}
Could this be more of a Droplet problem?