Bump iOS PWA icon filename
All checks were successful
Build & Push Docker Image to Gitea Registry / build-and-push (push) Successful in 10s

This commit is contained in:
Kroonk
2026-05-21 14:35:23 +02:00
parent 325c30414c
commit 0c3838da8a
5 changed files with 10 additions and 11 deletions

7
sw.js
View File

@@ -1,12 +1,12 @@
const CACHE_NAME = 'mischlabs-pwa-v1';
const CACHE_NAME = 'mischlabs-pwa-v2';
const APP_SHELL = [
'/',
'/index.html',
'/style.css?v=8',
'/manifest.webmanifest',
'/manifest.webmanifest?v=2',
'/icons/icon-192.png',
'/icons/icon-512.png',
'/icons/apple-touch-icon.png'
'/icons/apple-touch-icon-v2.png'
];
self.addEventListener('install', (event) => {
@@ -53,4 +53,3 @@ self.addEventListener('fetch', (event) => {
))
);
});