From ed3c855eb669b8c435bb7fc133d673525af2dd10 Mon Sep 17 00:00:00 2001 From: Andray <33491867+light-and-ray@users.noreply.github.com> Date: Thu, 15 Jan 2026 07:55:09 +0400 Subject: [PATCH] fix: add missing pwa icon in manifest.json (#8071) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Icon is required for PWA in most browsers. In the best case it hides the install button inside "save and share" menu, and uses the favicon of low quality or the first letter of the title for icon. In the worst case the app is not installable If you don't see the change in the browser - clear browser's cache. I had an issue with it ## Changes - **What**: added "icons" into "manifest.json" ## Screenshots Screenshot_20260115_065548 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8071-fix-add-missing-pwa-icon-in-manifest-json-2e96d73d3650818f9f10e79e4cc8cd5d) by [Unito](https://www.unito.io) --- manifest.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/manifest.json b/manifest.json index d906b2e23..ad419b437 100644 --- a/manifest.json +++ b/manifest.json @@ -3,6 +3,13 @@ "short_name": "ComfyUI", "description": "ComfyUI: AI image generation platform", "start_url": "/", + "icons": [ + { + "src": "/assets/images/comfy-logo-single.svg", + "sizes": "any", + "type": "image/svg+xml" + } + ], "display": "standalone", "background_color": "#ffffff", "theme_color": "#000000"