From 512dccd2afe855060711ec0ab89503a0ca30bd93 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Mon, 13 Oct 2025 00:44:14 -0600 Subject: [PATCH] Fix screenshot dimensions in PWA manifest - Update desktop screenshot to 1920x1080 (was 1280x720) - Update mobile screenshot to 614x853 (was 375x667) - Keep tablet screenshot at 768x1024 (correct) --- nuxt4/nuxt.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nuxt4/nuxt.config.ts b/nuxt4/nuxt.config.ts index 5a38244..bdfa494 100644 --- a/nuxt4/nuxt.config.ts +++ b/nuxt4/nuxt.config.ts @@ -57,7 +57,7 @@ export default defineNuxtConfig({ screenshots: [ { src: '/screenshots/desktop-1.png', - sizes: '1280x720', + sizes: '1920x1080', type: 'image/png', form_factor: 'wide', label: 'Pantalla principal en escritorio' @@ -71,7 +71,7 @@ export default defineNuxtConfig({ }, { src: '/screenshots/mobile-1.png', - sizes: '375x667', + sizes: '614x853', type: 'image/png', form_factor: 'narrow', label: 'Pantalla principal en móvil'