Tenuka
Tenuka
Explore posts from servers
BABetter Auth
Created by Tenuka on 4/3/2025 in #help
Better Auth + Hono + Nextjs ( JStack ) Cookies
No description
2 replies
TTCTheo's Typesafe Cult
Created by Tenuka on 3/16/2025 in #questions
Uploadthing Path Not Found HONO
appRouter.all("/uploadthing", (ctx) => {
return uploadthingHandlers({ ...ctx.env, ctx: ctx.executionCtx })(
ctx.req.raw
);
});
appRouter.all("/uploadthing", (ctx) => {
return uploadthingHandlers({ ...ctx.env, ctx: ctx.executionCtx })(
ctx.req.raw
);
});
const api = j
.router<{}, AppContext>()
.basePath("/api")
.use(corsMiddleware)
.onError(j.defaults.errorHandler);

const appRouter = j.mergeRouters(api, {
email: emailRouter,
admin: adminRouter,
ai: aiRouter,
property: propertyRouter,
uploadthing: uploadthingRouter,
map: mapsRouter,
blog: blogRouter,
room: roomRouter,
user: userRouter,
});
const api = j
.router<{}, AppContext>()
.basePath("/api")
.use(corsMiddleware)
.onError(j.defaults.errorHandler);

const appRouter = j.mergeRouters(api, {
email: emailRouter,
admin: adminRouter,
ai: aiRouter,
property: propertyRouter,
uploadthing: uploadthingRouter,
map: mapsRouter,
blog: blogRouter,
room: roomRouter,
user: userRouter,
});
This is my AppRouter config for /api path so the url is 127.0.0.1:8787, Ive used jstack as tho explained but the hono api dosent get the uploadthing path
[wrangler:inf] GET /api/uploadthing 404 Not Found (21ms)
[wrangler:inf] GET /api/uploadthing 404 Not Found (21ms)
2 replies
BABetter Auth
Created by Tenuka on 3/14/2025 in #help
Hono dosen't set cookies, so session returns Null
No description
2 replies
BABetter Auth
Created by Tenuka on 3/13/2025 in #bug-reports
Type Error invalid URL string
1 replies