Refactor form component
Refactor the form component to use a hybrid approach.
This commit is contained in:
8
src/lib/supabase.ts
Normal file
8
src/lib/supabase.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
import { createClient } from '@supabase/supabase-js';
|
||||
|
||||
// Supabase URL과 anon key는 실제 프로젝트 값으로 대체해야 합니다
|
||||
const supabaseUrl = 'YOUR_SUPABASE_URL';
|
||||
const supabaseAnonKey = 'YOUR_SUPABASE_ANON_KEY';
|
||||
|
||||
export const supabase = createClient(supabaseUrl, supabaseAnonKey);
|
||||
Reference in New Issue
Block a user