- feat: add server proxy that says "Hello World"

This commit is contained in:
Albez0-An7h 2026-03-04 14:50:44 +05:30
parent 8fa62cff6f
commit 67134d4a7c

9
app/routes/app.proxy.tsx Normal file
View File

@ -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",
},
});
}