cannot auth from local network

Im accessing a hosted instance of supabase via a sveltekit app, localhost:5173 works perfectly fine with auth, and ive got a redirect url for it
localhost:5173/auth/callback
im trying to host the app on my local network so i can check the application on my phone its hosted on my mac via
pnpm dev --host
and on my phone i can reach the site, however no matter what combination of additional redirect url i add i cannot get auth working, im running on a macbook, the firewall is off, ive set the default redirect url to localhosp (intentionally misspelled) local ip for example is 192.168.0.1:5173, ive tried all of the following

http://192.168.0.1:5173/auth/callback
http://192.168.0.1:5173/auth/callback/
http://192.168.0.1**
http://192.168.0.1:5173**
http://192.168.0.1:5173/**
http://192.168.0.1:5173/auth/callback**
http://192.168.0.1:5173/auth/callback/**
http://*.*.*.*:5173**


why do none of these work but accessing via localhost does ?
Was this page helpful?