- feat: add server proxy that says "Hello World"
This commit is contained in:
parent
8fa62cff6f
commit
67134d4a7c
9
app/routes/app.proxy.tsx
Normal file
9
app/routes/app.proxy.tsx
Normal 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",
|
||||
},
|
||||
});
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user