rateLimit: {
window: 60, // time window in seconds
max: 100, // max requests in the window
customRules: {
"/forget-password/*": async (request) => {
return {
window: 30,
max: 1,
}
}
},
},
rateLimit: {
window: 60, // time window in seconds
max: 100, // max requests in the window
customRules: {
"/forget-password/*": async (request) => {
return {
window: 30,
max: 1,
}
}
},
},