PWA: PNG-Icons für Homescreen (iOS 180px, Android 192/512px)

This commit is contained in:
rene 2026-05-22 08:12:32 +02:00
parent 51c0fe58aa
commit 50810c4b50
5 changed files with 5 additions and 3 deletions

View file

@ -19,8 +19,10 @@ export default defineConfig({
display: 'standalone',
start_url: '/',
icons: [
{ src: '/icons/icon-512.svg', sizes: '512x512', type: 'image/svg+xml', purpose: 'any maskable' },
{ src: '/favicon.svg', sizes: '64x64', type: 'image/svg+xml', purpose: 'any' }
{ src: '/icons/icon-512.png', sizes: '512x512', type: 'image/png', purpose: 'any maskable' },
{ src: '/icons/icon-192.png', sizes: '192x192', type: 'image/png', purpose: 'any maskable' },
{ src: '/apple-touch-icon.png', sizes: '180x180', type: 'image/png', purpose: 'any' },
{ src: '/favicon.svg', sizes: 'any', type: 'image/svg+xml', purpose: 'any' }
]
},
injectManifest: {