1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2025-01-03 18:35:00 +01:00
portfolio/gatsby-browser.js

12 lines
372 B
JavaScript
Raw Normal View History

exports.onInitialClientRender = () => {
2018-06-20 22:53:08 +02:00
require('./src/styles/base.scss')
}
2018-06-23 14:36:07 +02:00
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
}
}