Handle check email verified
How do you handle the check if the account is already verified? I cannot access this data in the middleware and I am redirecting after the user navigated to a specific page which feels super off. Is there any better way?
15 Replies
thats how i handle mine
Have you tried managing the handle outside the middleware and then calling it inside?
For example,
auth.helper.ts
middleware.ts
midleware runs on the edge so if youre using something like prisma it may not work
but the snippet i sent works for me
got it from the better-auth docs too
Next.js integration | Better Auth
Integrate Better Auth with Next.js.
depending on your nextjs version
follow that
@Tee isn't this slower? I cannot imagine doing an api call on every single navigation
its the same thing?
@Réno How would you handle this with a seperate backend? I use Hono (externally)
Same thing as...?
i mean middleware always runs anyways so it will need to get the session with each req
Ah bruh yeah you're right
I forgot that I use sessions
Before that I used tokens and got confused
it's pretty fast for me tho so you could try ig
Do you host your backend on the same origin?
Because I though about hosting it somewhere else and depending on where exactly I am going to host it I think this might be a performance killer?
yeah my backend is in next
so same origin
okay. Maybe I am going to switch. I am going to take a look
Thank you
no problem man