Ivan

Results 1 comments of Ivan

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) })...