mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 05:54:06 +01:00
22 lines
621 B
TypeScript
22 lines
621 B
TypeScript
import { createServerClient } from "@supabase/ssr";
|
|
import { cookies } from "next/headers";
|
|
|
|
export function createSupabaseClient() {
|
|
const cookieStore = cookies();
|
|
|
|
return createServerClient(process.env.NEXT_PUBLIC_SUPABASE_URL!, process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!, {
|
|
cookies: {
|
|
getAll() {
|
|
return cookieStore.getAll();
|
|
},
|
|
setAll(cookiesToSet) {
|
|
try {
|
|
cookiesToSet.forEach(({ name, value, options }) => cookieStore.set(name, value, options));
|
|
} catch (error) {
|
|
console.error("Error setting cookies:", error);
|
|
}
|
|
},
|
|
},
|
|
});
|
|
}
|