1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-08 09:12:42 +01:00
Pinafore-Web-Client-Frontend/templates/main.js
2018-02-14 18:37:19 -08:00

12 lines
423 B
JavaScript

import { init } from 'sapper/runtime.js'
import { loadPolyfills } from '../routes/_utils/loadPolyfills'
import '../routes/_utils/offlineNotification'
import '../routes/_utils/serviceWorkerClient'
import '../routes/_utils/historyEvents'
import '../routes/_utils/loadingMask'
loadPolyfills().then(() => {
// `routes` is an array of route objects injected by Sapper
init(document.querySelector('#sapper'), __routes__)
})