From 05cdbc4c715b2c2c337643debc37b21307683d4c Mon Sep 17 00:00:00 2001 From: TheMonkeyCoder Date: Thu, 12 Dec 2024 20:26:32 +0300 Subject: [PATCH] feat: increase API rate limit (#8) --- apps/klesia/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/klesia/src/index.ts b/apps/klesia/src/index.ts index 1c14cb7..9886658 100644 --- a/apps/klesia/src/index.ts +++ b/apps/klesia/src/index.ts @@ -27,7 +27,7 @@ api.use( c.req.header("x-forwarded-for") ?? getConnInfo(c).remote.address ?? nanoid(), - limit: 10, + limit: 100, }), ); api.use("/api", cors({ origin: "*" }));