You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
app.use(
rateLimit.middleware({
interval: { min: 15 }, // 15 minutes = 15*60*1000
max: 100, // limit each IP to 100 requests per interval
})
)
I am not using a store. For now I am conditionally adding the block for production but I'm wondering why sequelize is being added at all if I'm not using it.
Thanks for your time!
The text was updated successfully, but these errors were encountered:
I'd love to use this library but it is breaking my tests with the following error:
This happens as soon as I require the module in my app:
This is how I'm using it in my
server.js
file:I am not using a store. For now I am conditionally adding the block for production but I'm wondering why sequelize is being added at all if I'm not using it.
Thanks for your time!
The text was updated successfully, but these errors were encountered: