import { Oak } from "https://deno.land/x/oak_http_proxy@2.3.0/test/deps.ts";
const { REDIRECT_BACK } = Oak;
A symbol that indicates to response.redirect()
to attempt to redirect
back to the request referrer. For example:
import { Application, REDIRECT_BACK } from "https://deno.land/x/oak/mod.ts";
const app = new Application();
app.use((ctx) => {
if (ctx.request.url.pathName === "/back") {
ctx.response.redirect(REDIRECT_BACK, "/");
}
});
await app.listen({ port: 80 });