How to redirect a Nextjs route
We can use the redirect function from next/navigation module to redirect another route. In the route components page just import the module and specify the path to redirect, as follows.
import { redirect } from "next/navigation";
export default function Home() {
redirect('/dashboard')
return (
.....
....
)
Comments
Post a Comment