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
@@ -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'
|
||||||
},
|
},
|
||||||
|
|||||||
BIN
nuxt4/public/icon-128x128.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
nuxt4/public/icon-144x144.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
nuxt4/public/icon-152x152.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 44 KiB |
BIN
nuxt4/public/icon-256x256.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
nuxt4/public/icon-384x384.png
Normal file
|
After Width: | Height: | Size: 173 KiB |
|
Before Width: | Height: | Size: 146 KiB After Width: | Height: | Size: 323 KiB |
BIN
nuxt4/public/icon-72x72.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
nuxt4/public/icon-96x96.png
Normal file
|
After Width: | Height: | Size: 13 KiB |