From 1becdce9ffa87061d52c768ff1d7dbb64c7c8979 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 8 Feb 2026 17:16:48 +0000 Subject: [PATCH] favicon --- backend/main.py | 4 ++++ frontend/index.html | 1 + 2 files changed, 5 insertions(+) diff --git a/backend/main.py b/backend/main.py index 5d24631..1aa0b1b 100644 --- a/backend/main.py +++ b/backend/main.py @@ -106,6 +106,10 @@ def videos_proxy(): def index(): return send_from_directory(app.static_folder, 'index.html') +@app.route('/favicon.ico') +def favicon(): + return send_from_directory(app.static_folder, 'favicon.ico') + @app.route('/api/stream', methods=['POST', 'GET', 'HEAD']) def stream_video(): # Note: