3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00

Fix 100KB config size limit

This commit is contained in:
Dragory 2021-08-20 21:37:25 +03:00
parent 8585686032
commit 817d38b8ac
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -14,7 +14,11 @@ app.use(
origin: process.env.DASHBOARD_URL,
}),
);
app.use(express.json());
app.use(
express.json({
limit: "10mb",
}),
);
initAuth(app);
initGuildsAPI(app);