// in gastby-browser.js exports.shouldUpdateScroll = ({ routerProps: { location }, getSavedScrollPosition, }) => { const { pathname } = location // list of routes for the scroll-to-top-hook const scrollToTopRoutes = [`/privacy-policy`, `/page-2`] // if the new route is part of the list above, scroll to top (0, 0) if (scrollToTopRoutes.indexOf(pathname) !== -1) { window.scrollTo(0, 0) } return false }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter