From 1738ec2c79d5a5ae2eeba34259d1fb5c0db2b0b5 Mon Sep 17 00:00:00 2001 From: DarkShyMW Date: Sun, 12 Mar 2023 21:10:29 +0300 Subject: [PATCH] modified: sw.js --- sw.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sw.js b/sw.js index 483adaf..7981b8e 100644 --- a/sw.js +++ b/sw.js @@ -16,7 +16,10 @@ self.addEventListener('install', (event) => { event.waitUntil( caches.open(CACHE).then((cache) => cache.addAll([ '/img/favicon.ico', - '/css/style.css' + '/css/style.css', + '/img/log.webp', + '/css/bootstrap.min.css', + '/js/bootstrap.min.js' ]) )); });