mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 14:11:50 +00:00
Fix 100KB config size limit
This commit is contained in:
parent
8585686032
commit
817d38b8ac
1 changed files with 5 additions and 1 deletions
|
@ -14,7 +14,11 @@ app.use(
|
||||||
origin: process.env.DASHBOARD_URL,
|
origin: process.env.DASHBOARD_URL,
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
app.use(express.json());
|
app.use(
|
||||||
|
express.json({
|
||||||
|
limit: "10mb",
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
initAuth(app);
|
initAuth(app);
|
||||||
initGuildsAPI(app);
|
initGuildsAPI(app);
|
||||||
|
|
Loading…
Add table
Reference in a new issue