fix: add PNG icons for PWA compatibility (Android/iOS)

This commit is contained in:
2026-02-12 19:47:00 +01:00
parent 51bbe0cb52
commit 8e3ae3e7d6
8 changed files with 629 additions and 8 deletions

View File

@@ -31,14 +31,14 @@ export default defineConfig({
theme_color: '#00f2fe',
icons: [
{
src: '/pwa-192x192.svg',
src: '/pwa-192x192.png',
sizes: '192x192',
type: 'image/svg+xml'
type: 'image/png'
},
{
src: '/pwa-512x512.svg',
src: '/pwa-512x512.png',
sizes: '512x512',
type: 'image/svg+xml'
type: 'image/png'
}
]
}