feat: bump up blob size limit temporarily (#4747)

This commit is contained in:
DarkSky 2023-10-28 02:51:02 -05:00 committed by GitHub
parent 588f63505d
commit 1775138228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
})
);