feat: update icon paths in manifest and HTML, and adjust service worker registration

This commit is contained in:
Jaime Idolpx 2026-04-14 15:09:54 -04:00
parent c0dde2f5b1
commit 87550fe5ee
4 changed files with 5 additions and 5 deletions

View File

@ -9,8 +9,8 @@
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="icon" type="image/png" sizes="192x192" href="/icon-192.png" />
<link rel="icon" type="image/png" sizes="512x512" href="/icon-512.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<style>html, body { height: 100%; margin: 0; } #root { height: 100%; }</style>
</head>

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -8,12 +8,12 @@
"description": "Configuration app for Meatloaf device.",
"icons": [
{
"src": "/icon.192.png",
"src": "icon.192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icon.512.png",
"src": "icon.512.png",
"sizes": "512x512",
"type": "image/png"
}

View File

@ -7,7 +7,7 @@
// Register service worker for PWA installability
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/service-worker.js');
navigator.serviceWorker.register('service-worker.js');
});
}