Is it possible to manually revalidate routes in the background (SWR) in Next.Js App Router?
I have a Next.js 14.2.2 application (using the App Router) with a page that displays data from an external data source (let’s say a JSON API Endpoint). That data periodically updates in the external source.
After caching a page in Next.js, the data fetched from the server doesn’t update
On this page, data fetched from the server. When I first render this page or reload it, all the data is displayed correctly, but if I go to another page and then go back without reloading, the old data is displayed.