pinafore/templates/main.js

14 lines
481 B
JavaScript
Raw Normal View History

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