You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Copyright 2018 Google Inc. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */// If the loader is already loaded, just stop.if(!self.define){letregistry={}// Used for `eval` and `importScripts` where we can't get script URL by other means.// In both cases, it's safe to use a global var because those functions are synchronous.letnextDefineUriconstsingleRequire=(uri,parentUri)=>{uri=newURL(uri+'.js',parentUri).hrefreturn(registry[uri]||newPromise((resolve)=>{if('document'inself){constscript=document.createElement('script')script.src=uriscript.onload=resolvedocument.head.appendChild(script)}else{nextDefineUri=uriimportScripts(uri)resolve()}}).then(()=>{letpromise=registry[uri]if(!promise){thrownewError(`Module ${uri} didn’t register its module`)}returnpromise}))}self.define=(depsNames,factory)=>{consturi=nextDefineUri||('document'inself ? document.currentScript.src : '')||location.hrefif(registry[uri]){// Module is already loading or loaded.return}letexports={}constrequire=(depUri)=>singleRequire(depUri,uri)constspecialDeps={module: { uri },
exports,
require,}registry[uri]=Promise.all(depsNames.map((depName)=>specialDeps[depName]||require(depName))).then((deps)=>{factory(...deps)returnexports})}}define(['./workbox-9637eeee'],function(workbox){'use strict'self.addEventListener('message',(event)=>{if(event.data&&event.data.type==='SKIP_WAITING'){self.skipWaiting()}})/** * The precacheAndRoute() method efficiently caches and responds to * requests for URLs in the manifest. * See https://goo.gl/S9QRab */workbox.precacheAndRoute([{url: 'registerSW.js',revision: '3ca0b8505b4bec776b69afdba2768812',},{url: 'index.html',revision: '0.7kniv7baauo',},],{})workbox.cleanupOutdatedCaches()workbox.registerRoute(newworkbox.NavigationRoute(workbox.createHandlerBoundToURL('index.html'),{allowlist: [/^\/$/],}))})
Problems:
The server keeps reloading when a GET request gets send to it, it seams something is triggering a change in the dev-dist\registerSW.js
Expected behavior:
The server only reloads when I change files...
Code:
vite.config.js
dev-dist/registerSW.js
dev-dist/sw.js
dist/manifest.webmanifest
Comments:
I don't know if this is the expected behavior but I feel it's not, maybe I´m missing something (?)
The text was updated successfully, but these errors were encountered: