We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7250580 commit 571c378Copy full SHA for 571c378
server/utils/supabase.js
@@ -1,9 +1,5 @@
1
import { createClient } from '@supabase/supabase-js'
2
-const supabase = createClient('https://ixxbyuandbmplfnqtxyw.supabase.co', process.env.SUPABASE_ADMIN_KEY, {
+const supabase = createClient(process.env.SUPABASE_URL, process.env.SUPABASE_ADMIN_KEY, {
3
auth: { persistSession: false }
4
})
5
-// DEV
6
-// 'https://drncrjteathtblggsgxi.supabase.co'
7
-// PROD
8
-// 'https://ixxbyuandbmplfnqtxyw.supabase.co'
9
export default supabase
0 commit comments