import 'react-native-url-polyfill/auto'
import AsyncStorage from '@react-native-async-storage/async-storage'
import { createClient } from '@supabase/supabase-js'
const supabaseUrl = 'https://rmtpcswhdhfcgpgsbdsj.supabase.co'
const supabaseKey = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InJtdHBjc3doZGhmY2dwZ3NiZHNqIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzE0Mjk4MTQsImV4cCI6MjA4NzAwNTgxNH0.VHToxpn7mj8CUQ4akdckRfSwg1H5hbumirTFWWkHrT4'
export const supabase = createClient(supabaseUrl, supabaseKey, {
auth: {
storage: AsyncStorage,
autoRefreshToken: true,
persistSession: true,
detectSessionInUrl: false,
},
})
import 'react-native-url-polyfill/auto'
import AsyncStorage from '@react-native-async-storage/async-storage'
import { createClient } from '@supabase/supabase-js'
const supabaseUrl = 'https://rmtpcswhdhfcgpgsbdsj.supabase.co'
const supabaseKey = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InJtdHBjc3doZGhmY2dwZ3NiZHNqIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzE0Mjk4MTQsImV4cCI6MjA4NzAwNTgxNH0.VHToxpn7mj8CUQ4akdckRfSwg1H5hbumirTFWWkHrT4'
export const supabase = createClient(supabaseUrl, supabaseKey, {
auth: {
storage: AsyncStorage,
autoRefreshToken: true,
persistSession: true,
detectSessionInUrl: false,
},
})