blob: 012d9e9c306f154c401979300191696c0ba11c9e (
plain)
1
2
3
4
5
6
7
|
import type { ActionFunctionArgs } from "@remix-run/node";
import { authenticator } from "../.server/auth";
export async function action({ request }: ActionFunctionArgs) {
await authenticator.logout(request, { redirectTo: "/" });
return null;
}
|