File size: 291 Bytes
7ebc805
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import type { LoaderFunctionArgs } from '@remix-run/cloudflare';
import { logout } from '~/lib/.server/sessions';

export async function loader({ request, context }: LoaderFunctionArgs) {
  return logout(request, context.cloudflare.env);
}

export default function Logout() {
  return '';
}