Skip to content

Commit

Permalink
린트
Browse files Browse the repository at this point in the history
  • Loading branch information
shinwonse committed Oct 10, 2024
1 parent 29503da commit b052a69
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/services/supabase.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { createClient } from '@supabase/supabase-js';

export const supabase = createClient(
process.env.SUPABASE_URL!,
process.env.SUPABASE_KEY!,
{ auth: { persistSession: false } },
);
export const supabase = createClient(process.env.SUPABASE_URL!, process.env.SUPABASE_KEY!, {
auth: { persistSession: false },
});

0 comments on commit b052a69

Please sign in to comment.