From b6c281cda547de198f90dda203f237933ec62621 Mon Sep 17 00:00:00 2001 From: TheMonkeyCoder Date: Thu, 12 Dec 2024 20:21:00 +0300 Subject: [PATCH] feat: increase API rate limit --- 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: "*" }));