Fix weird type error???

This commit is contained in:
Hri7566 2024-07-07 09:18:50 -04:00
parent 2cfde1001e
commit 9ece949220
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ const logger = new Logger("Server");
export const server = Bun.serve(
createBunServeHandler({
router: appRouter,
createContext: createContext
createContext: createContext,
req: new Request("https://github.com/Hri7566"),
endpoint: "/"
})
);