File size: 254 Bytes
4bea261
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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' }
  });
};