diff --git a/serviceworker.js b/serviceworker.js index d2d050b..f37627b 100644 --- a/serviceworker.js +++ b/serviceworker.js @@ -10,7 +10,7 @@ const staticFiles = [ 'https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap' ]; -const FILMS_ORIGINS = ['http://localhost:3000', 'https://gotfilm.tk']; +const FILMS_ORIGINS = ['http://localhost:3000', 'https://gotfilm.tech']; const getDynamicFiles = async () => { const list = await fetch('./asset-manifest.json').then(data => data.json()); @@ -85,4 +85,4 @@ async function cacheFirstOrSave (request) { } // console.log(!!cached && 'cached' || !!fetched && 'fetched now' || 'new download / cannot be cached'); return cached ?? fetched ?? await fetch(request.url, options) -} \ No newline at end of file +}