mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-14 17:15:15 +01:00
25 lines
796 B
JavaScript
25 lines
796 B
JavaScript
import wrapPageElementWithLayout from './src/helpers/wrapPageElement'
|
|
|
|
// Global styles
|
|
import './src/styles/global.css'
|
|
|
|
// IntersectionObserver polyfill for gatsby-image (Safari, IE)
|
|
if (typeof window !== 'undefined' && !window.IntersectionObserver) {
|
|
import('intersection-observer')
|
|
}
|
|
|
|
// Layout with Page Transitions
|
|
export const wrapPageElement = wrapPageElementWithLayout
|
|
|
|
// Display a message when a service worker updates
|
|
// https://www.gatsbyjs.org/docs/add-offline-support-with-a-service-worker/#displaying-a-message-when-a-service-worker-updates
|
|
export const onServiceWorkerUpdateReady = () => {
|
|
const answer = window.confirm(
|
|
'This application has been updated. ' +
|
|
'Reload to display the latest version?'
|
|
)
|
|
if (answer === true) {
|
|
window.location.reload()
|
|
}
|
|
}
|