mirror of
https://github.com/VERT-sh/VERT.git
synced 2025-12-22 06:07:06 +00:00
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:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -18,4 +18,7 @@ Thumbs.db
|
||||
|
||||
# Vite
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
|
||||
# IDE
|
||||
.idea
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user