Skip to content

Commit b153315

Browse files
committed
Make dev rate limit harder to reach
1 parent 54becf5 commit b153315

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/backend/src/middleware.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type { NextRequest } from 'next/server';
99
import { NextResponse } from 'next/server';
1010
import { SmartRouter } from './smart-router';
1111

12-
const DEV_RATE_LIMIT_MAX_REQUESTS = 30;
12+
const DEV_RATE_LIMIT_MAX_REQUESTS = 100;
1313
const DEV_RATE_LIMIT_WINDOW_MS = 10_000;
1414
const devRateLimitTimestamps: number[] = [];
1515

0 commit comments

Comments
 (0)