From 251e5ddb162a3c08c0700ce6f64911f1d1242fa7 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 2 Jul 2025 15:05:16 +0200 Subject: [PATCH] fix: Update PWA manifest icon paths - Fix icon path issues in manifest.json with proper relative paths - Improve Progressive Web App installation reliability - Ensure all icon resources are properly referenced --- html/kidsai/manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/html/kidsai/manifest.json b/html/kidsai/manifest.json index fcc8120..642306e 100644 --- a/html/kidsai/manifest.json +++ b/html/kidsai/manifest.json @@ -9,17 +9,17 @@ "orientation": "portrait-primary", "icons": [ { - "src": "favicon-16x16.png", + "src": "./favicon-16x16.png", "sizes": "16x16", "type": "image/png" }, { - "src": "favicon-32x32.png", + "src": "./favicon-32x32.png", "sizes": "32x32", "type": "image/png" }, { - "src": "apple-touch-icon.png", + "src": "./apple-touch-icon.png", "sizes": "180x180", "type": "image/png", "purpose": "any maskable"