Separate icon purposes to avoid any maskable warning
All checks were successful
build-and-deploy / build (push) Successful in 51s
build-and-deploy / deploy (push) Successful in 3s

- Split icon-512x512.png into two separate entries
- One with purpose 'any' and one with purpose 'maskable'
- Avoids platform padding issues with combined purposes
This commit is contained in:
2025-10-13 01:00:02 -06:00
parent da75f32874
commit 9e66842322

View File

@@ -45,7 +45,13 @@ export default defineNuxtConfig({
src: '/icon-512x512.png', src: '/icon-512x512.png',
sizes: '512x512', sizes: '512x512',
type: 'image/png', type: 'image/png',
purpose: 'any maskable' purpose: 'any'
},
{
src: '/icon-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable'
} }
], ],
screenshots: [ screenshots: [