Relative Content

Tag Archive for reactjsnext.jsnext.js13next.js14

Next.js 14: Infinite scroll with scroll position AND STATE restoration when navigating back

I’m working on a page with an infinite list, where each item is clickable and leads to a different route. I load 10 items in a server action, I scroll down, more items load. I click one of the items, hit the browser’s back button, and while the scrolling position is restored, I only see the initial 10 items that were originally rendered on the server. What’s the best way to preserve all the data loaded until I navigate away from the main page?