mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 04:40:46 -05:00
6 lines
185 B
TypeScript
6 lines
185 B
TypeScript
import { type LoaderFunction, redirect } from "@remix-run/node";
|
|
|
|
export { action } from "~/modules/theme";
|
|
|
|
export const loader: LoaderFunction = () => redirect("/", { status: 404 });
|