muthuk1's picture
feat: complete UI redesign, theme system, and PDF analysis fixes
9318cf1
raw
history blame contribute delete
234 Bytes
import { createClient as createSupabaseClient } from '@supabase/supabase-js'
export function createClient() {
return createSupabaseClient(
process.env.NEXT_PUBLIC_SUPABASE_URL!,
process.env.SUPABASE_SERVICE_ROLE_KEY!
)
}