fix: update Dockerfile and remove .next from git

This commit is contained in:
2026-01-14 18:49:57 +00:00
parent 91fc911523
commit ed2c303d6f
252 changed files with 1537 additions and 10866 deletions

11
app/auth/signout/route.ts Normal file
View File

@@ -0,0 +1,11 @@
import { createClient } from '@/utils/supabase/server'
import { redirect } from 'next/navigation'
export async function POST(request: Request) {
const requestUrl = new URL(request.url)
const supabase = await createClient()
await supabase.auth.signOut()
return redirect(`${requestUrl.origin}/login`)
}