mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-01 15:55:34 +01:00
11 lines
315 B
JavaScript
Executable File
11 lines
315 B
JavaScript
Executable File
// import global branding styles
|
|
import './src/styles/global.scss'
|
|
|
|
// import prismjs syntax highlighting styles
|
|
import 'prismjs/themes/prism-okaidia.css'
|
|
|
|
// IntersectionObserver polyfill for gatsby-image (Safari, IE)
|
|
if (typeof window.IntersectionObserver === 'undefined') {
|
|
import('intersection-observer')
|
|
}
|