fix: correct MIME type for PWA manifest icons

The manifest.json was incorrectly specifying 'image/png' as the type
for lettermark.jpg icon files. This commit fixes the MIME type to
'image/jpeg' to match the actual file format, ensuring proper PWA
standards compliance and preventing potential browser compatibility issues.

Also adds .idea/ to .gitignore to exclude JetBrains IDE configuration.
This commit is contained in:
Gurjit Singh
2025-11-28 12:25:51 +01:00
parent 38ec057eef
commit ee2b826b5c
2 changed files with 6 additions and 3 deletions

5
.gitignore vendored
View File

@@ -18,4 +18,7 @@ Thumbs.db
# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
vite.config.ts.timestamp-*
# IDE
.idea

View File

@@ -10,12 +10,12 @@
{
"src": "lettermark.jpg",
"sizes": "192x192",
"type": "image/png"
"type": "image/jpeg"
},
{
"src": "lettermark.jpg",
"sizes": "512x512",
"type": "image/png"
"type": "image/jpeg"
}
]
}