diff --git a/sw.js b/sw.js index 08c186f..b8de43e 100644 --- a/sw.js +++ b/sw.js @@ -1,13 +1,14 @@ async function initCache() { const cache = await caches.open('v1') await cache.addAll([ - '/', //8 + '/', '/index.html', '/app.js', '/components/page.js', '/components/layout.js', '/components/header.js', '/components/nav-menu.js', + '/components/page-menu.js', ]) }