Allow service workers to have the scope / which is needed for the interceptor

This commit is contained in:
Kegan Dougal
2020-02-25 15:27:31 +00:00
parent 349d3e3d47
commit 3fcc3c8bfd
3 changed files with 6 additions and 3 deletions

View File

@@ -174,7 +174,7 @@ export async function loadApp() {
// load dendrite, if available
if (window.vector_dendrite_worker_script && 'serviceWorker' in navigator) {
window.addEventListener('load', ()=>{
navigator.serviceWorker.register(window.vector_dendrite_worker_script).then(function(registration) {
navigator.serviceWorker.register(window.vector_dendrite_worker_script, { scope: "/" }).then(function(registration) {
// Registration was successful
console.log('ServiceWorker registration successful with scope: ', registration.scope)
}, (err)=>{