The authentication system (both Google OAuth and manual email/password signup) is completely broken because the configured Supabase project URL (ekbpexshuochrplzorce.supabase.co) is returning a DNS_PROBE_FINISHED_NXDOMAIN error. This indicates that the Supabase project has either been deleted, paused due to inactivity, or the project reference ID is incorrect.
To Reproduce
- Navigate to the deployed application (
v0-infocusmovie.vercel.app).
- Click on "Weiter mit Google" (Google Sign-In).
- Result: Browser redirects to a dead page with a
DNS_PROBE_FINISHED_NXDOMAIN error.
- Attempt to sign up manually with an email and password.
- Result: The form displays a red
Failed to fetch validation error.
Expected Behavior
- The Google Auth flow should successfully redirect to the provider.
- The manual registration should contact a live backend/database API and create the user session.
Possible Solution
The project credentials in the deployment environment variables (NEXT_PUBLIC_SUPABASE_URL or equivalent) need to be updated with an active Supabase project instance. If the database was hosted on a free tier, it may just need to be unpaused via the Supabase dashboard.
The authentication system (both Google OAuth and manual email/password signup) is completely broken because the configured Supabase project URL (
ekbpexshuochrplzorce.supabase.co) is returning aDNS_PROBE_FINISHED_NXDOMAINerror. This indicates that the Supabase project has either been deleted, paused due to inactivity, or the project reference ID is incorrect.To Reproduce
v0-infocusmovie.vercel.app).DNS_PROBE_FINISHED_NXDOMAINerror.Failed to fetchvalidation error.Expected Behavior
Possible Solution
The project credentials in the deployment environment variables (
NEXT_PUBLIC_SUPABASE_URLor equivalent) need to be updated with an active Supabase project instance. If the database was hosted on a free tier, it may just need to be unpaused via the Supabase dashboard.