Integrar iconos PWA de múltiples tamaños desde pwa_assets
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 55s

- Copiar iconos desde /pwa_assets/icons/ a /public/
- Agregar iconos de 72x72, 96x96, 128x128, 144x144, 152x152, 256x256, 384x384
- Actualizar manifest con todos los tamaños de iconos
- Mejorar compatibilidad con diferentes dispositivos y resoluciones
- Mantener iconos maskable existentes para adaptive icons
This commit is contained in:
2025-10-17 18:31:28 -06:00
parent 5bb5e5092e
commit 47cf1c5e7c
10 changed files with 43 additions and 1 deletions

View File

@@ -88,9 +88,51 @@ export default defineNuxtConfig({
} }
], ],
icons: [ icons: [
{
src: '/icon-72x72.png',
sizes: '72x72',
type: 'image/png',
purpose: 'any'
},
{
src: '/icon-96x96.png',
sizes: '96x96',
type: 'image/png',
purpose: 'any'
},
{
src: '/icon-128x128.png',
sizes: '128x128',
type: 'image/png',
purpose: 'any'
},
{
src: '/icon-144x144.png',
sizes: '144x144',
type: 'image/png',
purpose: 'any'
},
{
src: '/icon-152x152.png',
sizes: '152x152',
type: 'image/png',
purpose: 'any'
},
{ {
src: '/icon-192x192.png', src: '/icon-192x192.png',
sizes: '500x192', sizes: '192x192',
type: 'image/png',
purpose: 'any'
},
{
src: '/icon-256x256.png',
sizes: '256x256',
type: 'image/png',
purpose: 'any'
},
{
src: '/icon-384x384.png',
sizes: '384x384',
type: 'image/png', type: 'image/png',
purpose: 'any' purpose: 'any'
}, },

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 323 KiB

BIN
nuxt4/public/icon-72x72.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

BIN
nuxt4/public/icon-96x96.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB