mirror of
https://github.com/VERT-sh/VERT.git
synced 2026-01-13 19:59:40 -06:00
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.
22 lines
380 B
JSON
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"
|
|
}
|
|
]
|
|
}
|