How to redirect the user from homepage when they are logged in?
Unanswered
Spectacled bear posted this in #help-forum
Spectacled bearOP
I'm using supabase and I wanna redirect the user from the homepage if they have logged in, what is the best way of doing this?
middleware?
middleware?
1 Reply
It depends on what way you choose from https://supabase.com/docs/guides/auth/auth-helpers/nextjs
On success you can redirect to any URL you want (
On success you can redirect to any URL you want (
NextResponse.redirect on route handler, redirect on server actions or router.push on client side)