From e92ab121d6a5f507c713fa62956ad609d360d935 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 4 Nov 2025 16:23:49 +0530 Subject: [PATCH] Update icons in manifest.json to use correct logo file names --- public/manifest.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/manifest.json b/public/manifest.json index 3b647a7e5..d6322cdf2 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -6,16 +6,16 @@ "description": "A Progressive Web Application setup for Laravel projects.", "theme_color": "#6777ef", "start_url": "/", - "icons": [ + "icons": [ { - "src": "/logo.png", + "src": "/logo-192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/logo.png", + "src": "/logo-512.png", "sizes": "512x512", "type": "image/png" } - ] + ] }