10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
{
|
|
const blessingElement = document.querySelector('#blessing-globals')!
|
|
// @ts-ignore
|
|
window.blessing = JSON.parse(blessingElement.textContent!)
|
|
|
|
window.addEventListener('load', () => {
|
|
navigator.serviceWorker.register('/sw.js?v6')
|
|
})
|
|
}
|