mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
12 lines
372 B
JavaScript
12 lines
372 B
JavaScript
exports.onInitialClientRender = () => {
|
|
require('./src/styles/base.scss')
|
|
}
|
|
|
|
exports.onClientEntry = () => {
|
|
// IntersectionObserver polyfill for gatsby-image (Safari, IE)
|
|
if (typeof window.IntersectionObserver === 'undefined') {
|
|
require('intersection-observer')
|
|
console.log('👍 IntersectionObserver is polyfilled') // eslint-disable-line no-console
|
|
}
|
|
}
|