diff --git a/app/routes/app.proxy.tsx b/app/routes/app.proxy.tsx new file mode 100644 index 0000000..ab9682e --- /dev/null +++ b/app/routes/app.proxy.tsx @@ -0,0 +1,9 @@ +import { LoaderFunctionArgs } from "@remix-run/node"; + +export async function loader({ request }: LoaderFunctionArgs) { + return new Response("Hello World", { + headers: { + "Content-Type": "text/plain", + }, + }); +} \ No newline at end of file