websetup/ts/serviceworker/index.ts
2019-03-27 14:40:06 +01:00

12 lines
420 B
TypeScript

export const setupServiceWoker = async () => {
// serviceworker
const script = document.createElement('script');
script.onload = () => {
console.log(
'Loaded Serviceworker. The serviceworker helps us with notifications and offline capabilities, so you can also read this site when your device is offline.'
);
};
script.src = 'serviceworker/mainthread.js';
document.head.appendChild(script);
};