mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-14 17:15:18 +01:00
9 lines
237 B
JavaScript
9 lines
237 B
JavaScript
require('./src/styles/global.scss')
|
|
|
|
exports.onClientEntry = () => {
|
|
// IntersectionObserver polyfill for gatsby-image (Safari, IE)
|
|
if (typeof window.IntersectionObserver === 'undefined') {
|
|
require('intersection-observer')
|
|
}
|
|
}
|