We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7864bae commit f5aee59Copy full SHA for f5aee59
packages/hoppscotch-backend/src/main.ts
@@ -51,17 +51,10 @@ async function bootstrap() {
51
secret:
52
configService.get('INFRA.SESSION_SECRET') ||
53
crypto.randomBytes(16).toString('hex'),
54
- resave: false,
55
- saveUninitialized: false,
56
- cookie: {
57
- httpOnly: true,
58
- secure: configService.get('INFRA.ALLOW_SECURE_COOKIES') === 'true',
59
- sameSite: 'lax',
60
- },
61
}),
62
);
63
64
- // Increase fil upload limit to 50MB
+ // Increase file upload limit to 100MB
65
app.use(
66
json({
67
limit: '100mb',
0 commit comments