mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-04-25 10:44:35 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 3m11s
29 lines
961 B
TypeScript
29 lines
961 B
TypeScript
import {createServerClient} from '@supabase/ssr'
|
|
import {cookies} from 'next/headers'
|
|
|
|
export async function createClient() {
|
|
const cookieStore = await 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 {
|
|
// The `setAll` method was called from a Server Component.
|
|
// This can be ignored if you have middleware refreshing
|
|
// user sessions.
|
|
}
|
|
}
|
|
}
|
|
}
|
|
)
|
|
} |