2025-01-24 07:37:44 +08:00
|
|
|
import { createServerClient } from '@supabase/ssr';
|
2025-01-07 02:29:29 +08:00
|
|
|
import { cookies } from 'next/headers';
|
|
|
|
|
|
|
|
export async function createClient() {
|
|
|
|
const cookieStore = await cookies();
|
|
|
|
|
|
|
|
return await createServerClient(
|
|
|
|
process.env.NEXT_PUBLIC_SUPABASE_URL!,
|
|
|
|
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!,
|
|
|
|
{
|
2025-01-24 07:37:44 +08:00
|
|
|
cookieOptions: {
|
|
|
|
secure: true,
|
|
|
|
httpOnly: true
|
|
|
|
},
|
|
|
|
auth: {
|
|
|
|
autoRefreshToken: true,
|
|
|
|
persistSession: true
|
|
|
|
},
|
2025-01-07 02:29:29 +08:00
|
|
|
cookies: {
|
|
|
|
getAll() {
|
|
|
|
return cookieStore.getAll();
|
|
|
|
},
|
|
|
|
setAll(cookiesToSet) {
|
|
|
|
try {
|
|
|
|
cookiesToSet.forEach(({ name, value, options }) =>
|
|
|
|
cookieStore.set(name, value, options)
|
|
|
|
);
|
|
|
|
} catch {
|
|
|
|
// The `setAll` method was called from a Server Component.
|
|
|
|
// This can be ignored if you have middleware refreshing
|
|
|
|
// user sessions.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|