We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0abe930 commit 49d3093Copy full SHA for 49d3093
1 file changed
src/main/app.ts
@@ -39,15 +39,8 @@ export class App {
39
// next();
40
// });
41
42
- this.app.use(
43
- express.json({
44
- verify: (req, res, buf) => {
45
- // @ts-ignore
46
- req.rawBody = buf;
47
- },
48
- limit: '100mb',
49
- }),
50
- );
+ this.app.use(express.json({ limit: '1000mb' }));
+ this.app.use(express.urlencoded({ limit: '1000mb', extended: true }));
51
52
// Request logging
53
this.app.use((req: Request, res: Response, next: NextFunction) => {
0 commit comments