forked from github/plane
18 lines
435 B
TypeScript
18 lines
435 B
TypeScript
// next imports
|
|
import type { NextPageContext } from "next";
|
|
import Router from "next/router";
|
|
|
|
const redirect = (context: NextPageContext, 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;
|