import { oak } from "https://deno.land/x/hex@0.5.15/src/service/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 });