Join the AI Workshop to learn more about AI and how it can be applied to web development. Next cohort February 1st, 2026
The AI-first Web Development BOOTCAMP cohort starts February 24th, 2026. 10 weeks of intensive training and hands-on projects.
In a component, you can use the useRouter hook:
import { useRouter } from 'next/router'
//...
const router = useRouter()
router.reload(window.location.pathname)
Sometimes you can’t, for example when you’re not in a React component, maybe in a utility function.
In that case, you can do this:
import Router from 'next/router'
Router.reload(window.location.pathname)