mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-02 00:05:35 +01:00
Matthias Kretschmann
7014ee27a7
* update most dependencies * simplify linting: kick out editorconfig, stylelint * update to @oceanprotocol/art v3.0.0, source new assets and update UI for it
21 lines
693 B
JavaScript
Executable File
21 lines
693 B
JavaScript
Executable File
// import global branding styles
|
|
import './src/styles/global.scss'
|
|
|
|
// IntersectionObserver polyfill for gatsby-image (Safari, IE)
|
|
if (typeof window.IntersectionObserver === 'undefined') {
|
|
// eslint-disable-next-line no-unused-expressions
|
|
import('intersection-observer')
|
|
}
|
|
|
|
// 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()
|
|
}
|
|
}
|