Setting signInWithOtp Site URL?
I'm trying to do the following, but unable to do so
How do I set the redirect URL for this subdomain?
How do I set the redirect URL for this subdomain?
const { error } = await supabase.auth.signInWithOtp({
email,
options: {
emailRedirectTo:
env !== "dev"
? "https://v3.example.com"
: "http://locahost:3000",
},
});