diff --git a/convex/_generated/api.d.ts b/convex/_generated/api.d.ts index c9340cc..9da6515 100644 --- a/convex/_generated/api.d.ts +++ b/convex/_generated/api.d.ts @@ -9,6 +9,7 @@ */ import type * as auth from "../auth.js"; +import type * as crons from "../crons.js"; import type * as github from "../github.js"; import type * as http from "../http.js"; import type * as leaderboard from "../leaderboard.js"; @@ -24,6 +25,7 @@ import type { declare const fullApi: ApiFromModules<{ auth: typeof auth; + crons: typeof crons; github: typeof github; http: typeof http; leaderboard: typeof leaderboard; diff --git a/wrangler.jsonc b/wrangler.jsonc index 8cb97fe..6b78b25 100644 --- a/wrangler.jsonc +++ b/wrangler.jsonc @@ -10,4 +10,10 @@ }, // Required compatibility date for Workers runtime features "compatibility_date": "2025-06-05", + "routes": [ + { + "pattern": "**", + "zone_name": "leakhub.ai", + }, + ], }