plane/lib/redirect.ts

17 lines
378 B
TypeScript
Raw Normal View History

2022-11-19 14:21:26 +00:00
// next imports
import Router from "next/router";
const redirect = (context: any, target: any) => {
if (context.res) {
// server
// 303: "See other"
context.res.writeHead(301, { Location: target });
context.res.end();
} else {
// In the browser, we just pretend like this never even happened ;)
Router.push(target);
}
};
export default redirect;