From fc97a18b74b409d593c6e0ab24a260e0669d1e01 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 4 Nov 2025 16:05:00 +0530 Subject: [PATCH] Update start_url in manifest.json to point to root and restructure icons array --- public/manifest.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/public/manifest.json b/public/manifest.json index e5d4030..3b647a7 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -5,5 +5,17 @@ "display": "standalone", "description": "A Progressive Web Application setup for Laravel projects.", "theme_color": "#6777ef", - "start_url": "/admin" + "start_url": "/", + "icons": [ + { + "src": "/logo.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/logo.png", + "sizes": "512x512", + "type": "image/png" + } + ] }