Fix build
Some checks failed
Build And Publish / BuildAndPublish (push) Failing after 2m6s

This commit is contained in:
Ryan Freeman 2025-02-23 21:10:38 +00:00
parent 415fc84251
commit 47f73eb0e4
3 changed files with 38 additions and 0 deletions

1
.gitignore vendored
View File

@ -4,6 +4,7 @@ prisma/**/*
.env
supabase/
!/lib/supabase
.idea/

8
lib/supabase/client.ts Normal file
View File

@ -0,0 +1,8 @@
import {createBrowserClient} from '@supabase/ssr'
export function createClient() {
return createBrowserClient(
process.env.NEXT_PUBLIC_SUPABASE_URL!,
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!
)
}

29
lib/supabase/server.ts Normal file
View File

@ -0,0 +1,29 @@
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.
}
},
},
}
)
}