diff --git a/index.js b/index.js index f1260f6..94f02da 100644 --- a/index.js +++ b/index.js @@ -39,8 +39,8 @@ if (!isDevelopment) { server.use( rateLimit({ - windowMs: 15 * 60 * 1000, - max: 100, + windowMs: 1 * 60 * 1000, // 1 minute + max: 1000, // limit each IP to 1000 requests per windowMs }) )