Files
VERT/static/manifest.json
Gurjit Singh ee2b826b5c 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.
2025-11-28 12:25:51 +01:00

22 lines
380 B
JSON

{
"name": "VERT",
"short_name": "VERT",
"description": "The file converter you'll love",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#F2ABEE",
"icons": [
{
"src": "lettermark.jpg",
"sizes": "192x192",
"type": "image/jpeg"
},
{
"src": "lettermark.jpg",
"sizes": "512x512",
"type": "image/jpeg"
}
]
}