()
| 2 | import { cookies } from "next/headers"; |
| 3 | |
| 4 | export async function GET() { |
| 5 | // Remove the authentication cookie |
| 6 | cookies().delete("boho_token"); |
| 7 | |
| 8 | return NextResponse.redirect(new URL("/", process.env.NEXT_PUBLIC_SITE_URL)); |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected