import { clearMemberCookie } from '../../../_lib/api'; export const dynamic = 'force-dynamic'; export async function POST(): Promise { return new Response(null, { status: 204, headers: { 'Set-Cookie': clearMemberCookie() } }); }