3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-23 17:45:03 +00:00

fix: increase max API input size to 50MB

This commit is contained in:
Dragory 2021-11-03 01:16:29 +02:00
parent f2d78a6be4
commit 51ac585bea

View file

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