From d8821db2bebad2884f1fb57930b6e4ee7ad918a1 Mon Sep 17 00:00:00 2001 From: gfejer <73720542+gfejer@users.noreply.github.com> Date: Tue, 20 May 2025 11:31:59 +0200 Subject: [PATCH] PWA support (#3639) Co-authored-by: bymyself --- index.html | 8 ++++++++ manifest.json | 9 +++++++++ 2 files changed, 17 insertions(+) create mode 100644 manifest.json diff --git a/index.html b/index.html index 7a321795c..0844ef4d1 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,15 @@ + + + + + + + +
diff --git a/manifest.json b/manifest.json new file mode 100644 index 000000000..d906b2e23 --- /dev/null +++ b/manifest.json @@ -0,0 +1,9 @@ +{ + "name": "ComfyUI", + "short_name": "ComfyUI", + "description": "ComfyUI: AI image generation platform", + "start_url": "/", + "display": "standalone", + "background_color": "#ffffff", + "theme_color": "#000000" +}