mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +00:00
11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
|
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 '';
|
||
|
}
|