export const POST = async ({ cookies }) => { cookies.delete('auth_token', { path: '/' }); return new Response(JSON.stringify({ message: 'Đăng xuất thành công!' }), { status: 200, headers: { 'Content-Type': 'application/json' } }); };