1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-28 00:27:40 +02:00
portfolio/gatsby-browser.js

9 lines
237 B
JavaScript
Raw Normal View History

2018-08-16 16:00:42 +02:00
require('./src/styles/global.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')
}
}