I want to sync the Users (Auth) of the NextJS Web App that is using:
- Supabase PostgreSQL
- Prisma
- NextAuth
With the new React Native App of the same project. The problem is that NextAuth only works on Web. So i think i have two options:
1. Migrate NextAuth to Supabase Auth for the web and implement Supabase Auth also on React Native.
2. Kepp using NextAuth and Link/Sync it in someway with Supabase Auth.
So... What is the best option and how should it be done?