Ivan
Results
1
comments of
Ivan
Scroll restoration happens too early before the page gets rendered after hitting browser back button
My solution for restoring scroll position when the browser **back button** clicked: **_app.js** ``` componentDidMount() { const cachedPageHeight = [] const html = document.querySelector('html') Router.events.on('routeChangeStart', () => { cachedPageHeight.push(document.documentElement.offsetHeight) })...