mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 12:05:40 +00:00
6 lines
191 B
TypeScript
6 lines
191 B
TypeScript
|
import {createClient} from '@supabase/supabase-js'
|
||
|
|
||
|
export const supabase = createClient(
|
||
|
process.env.NEXT_PUBLIC_SUPABASE_URL ?? "",
|
||
|
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY ?? ""
|
||
|
)
|