From b1e6a81bef5e7f85ecae0c25879352601b3b2f31 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Sat, 6 Apr 2024 15:17:54 -0400 Subject: [PATCH] update favicon --- html/{logo.ico => favicon.ico} | Bin html/favicon.svg | 17 +++++++++++++++++ webui.py | 3 ++- 3 files changed, 19 insertions(+), 1 deletion(-) rename html/{logo.ico => favicon.ico} (100%) create mode 100644 html/favicon.svg diff --git a/html/logo.ico b/html/favicon.ico similarity index 100% rename from html/logo.ico rename to html/favicon.ico diff --git a/html/favicon.svg b/html/favicon.svg new file mode 100644 index 000000000..6bab99352 --- /dev/null +++ b/html/favicon.svg @@ -0,0 +1,17 @@ + + + + diff --git a/webui.py b/webui.py index e39c3ead6..758820bec 100644 --- a/webui.py +++ b/webui.py @@ -263,7 +263,8 @@ def start_ui(): max_threads=64, show_api=False, quiet=True, - favicon_path='html/logo.ico', + # favicon_path='html/logo.ico', + favicon_path='html/favicon.svg', allowed_paths=allowed_paths, app_kwargs=fastapi_args, _frontend=True and cmd_opts.share,