From 78c3230b928dcf4a2c1278f0596b644ff4182e03 Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Fri, 2 Jan 2026 20:17:33 +0000 Subject: [PATCH] fix(#69): Set correct urls for local supabase --- supabase/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supabase/config.toml b/supabase/config.toml index 6520f37..8b00a0f 100644 --- a/supabase/config.toml +++ b/supabase/config.toml @@ -117,9 +117,9 @@ file_size_limit = "50MiB" enabled = true # The base URL of your website. Used as an allow-list for redirects and for constructing URLs used # in emails. -site_url = "http://127.0.0.1:3000" +site_url = "http://localhost:5173" # A list of *exact* URLs that auth providers are permitted to redirect to post authentication. -additional_redirect_urls = ["http://127.0.0.1:3000"] +additional_redirect_urls = ["http://localhost:5173"] # How long tokens are valid for, in seconds. Defaults to 3600 (1 hour), maximum 604,800 (1 week). jwt_expiry = 3600 # If disabled, the refresh token will never expire.