Skip to content

Commit

Permalink
feat: increase API rate limit (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeMonkeyCoder authored Dec 12, 2024
1 parent 2be76ea commit 05cdbc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/klesia/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: "*" }));
Expand Down

0 comments on commit 05cdbc4

Please sign in to comment.