We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34f4bc9 commit 9306665Copy full SHA for 9306665
1 file changed
src/main.ts
@@ -38,7 +38,7 @@ async function bootstrap() {
38
39
app.use(
40
'/graphql',
41
- graphqlUploadExpress({ maxFileSize: 10000000, maxFiles: 10 }),
+ graphqlUploadExpress({ maxFileSize: 1000 * 1000 * 10, maxFiles: 10 }),
42
(req: Request, res: Response, next: NextFunction) => {
43
const accept = req.headers.accept || '';
44
if (
0 commit comments