This commit is contained in:
Omar Najjar 2025-09-25 04:20:00 +10:00
parent 760b34d878
commit 9b9c6c257e
3 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Watermelon Movies 🍉">
<link rel="apple-touch-icon" href="/icon.png">
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png">
<style>
/* Custom styles for movie tiles */

View file

@ -8,12 +8,12 @@
"theme_color": "#ff6347",
"icons": [
{
"src": "icon.png",
"src": "/icons/androis-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icon.png",
"src": "/icons/androis-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}

2
sw.js
View file

@ -5,7 +5,7 @@ self.addEventListener('install', function(event) {
'/',
'/index.html',
'/style.css',
'/icon.png',
'/icons/apple-touch-icon.png',
'/manifest.json'
]);
})