Update icons in manifest.json to use correct logo file names

This commit is contained in:
dhanabalan
2025-11-04 16:23:49 +05:30
parent fc97a18b74
commit e92ab121d6

View File

@@ -6,16 +6,16 @@
"description": "A Progressive Web Application setup for Laravel projects.", "description": "A Progressive Web Application setup for Laravel projects.",
"theme_color": "#6777ef", "theme_color": "#6777ef",
"start_url": "/", "start_url": "/",
"icons": [ "icons": [
{ {
"src": "/logo.png", "src": "/logo-192.png",
"sizes": "192x192", "sizes": "192x192",
"type": "image/png" "type": "image/png"
}, },
{ {
"src": "/logo.png", "src": "/logo-512.png",
"sizes": "512x512", "sizes": "512x512",
"type": "image/png" "type": "image/png"
} }
] ]
} }