theory pages added

This commit is contained in:
2026-07-17 23:44:44 +03:00
parent 4bb7633353
commit 159f4197ae
24 changed files with 398 additions and 4 deletions
+2 -1
View File
@@ -1,4 +1,4 @@
const CACHE_NAME = 'numnum-v20';
const CACHE_NAME = 'numnum-v26';
const ASSETS = [
'/',
'/index.html',
@@ -28,6 +28,7 @@ self.addEventListener('activate', (e) => {
});
self.addEventListener('fetch', (e) => {
if (e.request.url.includes('/theory/')) return;
e.respondWith(
caches.match(e.request).then(r => r || fetch(e.request))
);