Skip to content

Commit

Permalink
feat: bump up blob size limit temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
darkskygit committed Oct 27, 2023
1 parent 588f635 commit dc6fb1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/backend/server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ app.use(serverTimingAndCache);

app.use(
graphqlUploadExpress({
maxFileSize: 10 * 1024 * 1024,
// TODO: dynamic limit by quota
maxFileSize: 100 * 1024 * 1024,
maxFiles: 5,
})
);
Expand Down

0 comments on commit dc6fb1b

Please sign in to comment.