/** * Implement Gatsby's Browser APIs in this file. * * See: https://www.gatsbyjs.org/docs/browser-apis/ */ // You can delete this file if you're not using it import './src/styles/global.scss'; import smoothscroll from 'smoothscroll-polyfill'; export const onClientEntry = async () => { if (typeof IntersectionObserver === 'undefined') { await import('intersection-observer'); } smoothscroll.polyfill(); };