UNPKG

vibe-init

Version:

Create a new project with good vibes ✨ - A modern full-stack monorepo template

11 lines (8 loc) 307 B
import { auth } from "lib/auth"; import type { LoaderFunctionArgs, ActionFunctionArgs } from "react-router"; export async function loader({ request }: LoaderFunctionArgs) { return auth.handler(request); } export async function action({ request }: ActionFunctionArgs) { return auth.handler(request); }