Supabase module recommended email template URL's and confirm.vue
Hi I have the supabase module however following the official documentation is a bit confusing. So I set
redirect: false
redirect: false
in my nuxt config for supabase to stop redirects to the login page. I also created the confirm.vue page as per the documentation. I then set my site url in supabase to http://localhost:3000 and redirect url to http://localhost:3000/confirm as per the docs. However if I send a magic link through the supabase web UI it sends me to my home page and not my /confirm page which seemingly should be handling this. Likely with the other email templates which send me to my root page. So my question is to properly set this up so i need to edit all the email templates to specify the url to /confirm and construct it using the {{ .tokenhash }} or similar? However in this case I then need to modify the confirm.vue page as it doesn't handle the tokenhash by default. Is this just how it needs to be setup or am I doing something wrong over complicating it?