fix: increase max API input size to 50MB

This commit is contained in:
Dragory 2021-11-03 01:16:29 +02:00
parent 9c1568b911
commit 4bdce129b3
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -18,7 +18,7 @@ app.use(
);
app.use(
express.json({
limit: "10mb",
limit: "50mb",
}),
);
app.use(multer().none());