redirect-localhost / server.ts
coyotte508's picture
coyotte508 HF Staff
Update server.ts
0238f04
raw
history blame
232 Bytes
import Koa from "koa";
const app = new Koa();
app.use((ctx) => {
console.log(ctx.request.url, ctx.request.method);
ctx.status = 307;
ctx.headers.location = `http://localhost:24242${ctx.request.path}`;
});
app.listen(7860);