AI Workshop: learn to build apps with AI →
Recipes: How to force a page refresh in Next.js

Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.


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)

Lessons in this unit:

0: Introduction
1: Using the router to detect the active link in Next.js
2: Next.js Email Authentication using NextAuth
3: ▶︎ How to force a page refresh in Next.js
4: How to add Google Analytics 4 to Next.js
5: Next.js, how to open a link in a new window
6: How to parse Markdown in Next.js
7: How to add ReCaptcha to a Next.js form
8: How to upload files in a Next.js form