2018-01-15 01:13:42 +00:00
|
|
|
import { init } from 'sapper/runtime.js'
|
2018-01-19 07:37:43 +00:00
|
|
|
import { offlineNotifiction } from '../routes/_utils/offlineNotification'
|
|
|
|
import { serviceWorkerClient } from '../routes/_utils/serviceWorkerClient'
|
2018-01-28 00:31:26 +00:00
|
|
|
import { loadPolyfills } from '../routes/_utils/loadPolyfills'
|
2018-01-19 05:25:12 +00:00
|
|
|
|
2018-01-28 00:31:26 +00:00
|
|
|
loadPolyfills().then(() => {
|
2018-01-08 07:00:15 +00:00
|
|
|
// `routes` is an array of route objects injected by Sapper
|
|
|
|
init(document.querySelector('#sapper'), __routes__)
|
2018-01-19 07:37:43 +00:00
|
|
|
})
|