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

Popular posts from this blog

Zustland : a minimal data store to consider for the Next React Project

How to run HugginFace models in Python

Build a Flask-Python web App