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,
|
||||
}),
|
||||
);
|
||||
app.use(express.json());
|
||||
app.use(
|
||||
express.json({
|
||||
limit: "10mb",
|
||||
}),
|
||||
);
|
||||
|
||||
initAuth(app);
|
||||
initGuildsAPI(app);
|
||||
|
|
Loading…
Add table
Reference in a new issue