Question on Supavisor with js client.

Hello, I am new with supabase,

I am using js client with expo react native project.
I am using client like this.

export const supabase = createClient<Database>(Config.SUPABASE_URL, Config.SUPABASE_ANON_KEY, {
  auth: {
    storage: AsyncStorage,
    autoRefreshToken: true,
    persistSession: true,
    detectSessionInUrl: false,
  },
});


Where exactly I should pass supavisor string?
Also, How can I enable IPv4 connections with js client?

Thanks in advanced.
Was this page helpful?