storybook/docs/gatsby-browser.js

10 lines
210 B
JavaScript

const { document } = require('global');
exports.onRouteUpdate = location => {
if (location.hash) {
setTimeout(() => {
document.querySelector(`${location.hash}`).scrollIntoView();
}, 0);
}
};