From 7cd89837b8a652f93750523e96dbc592408a6c71 Mon Sep 17 00:00:00 2001 From: Alberto Xamin Date: Wed, 25 Nov 2020 21:52:35 +0100 Subject: [PATCH] fix favicon serve error --- backend/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/__init__.py b/backend/__init__.py index 65f56e3..f2a30fd 100644 --- a/backend/__init__.py +++ b/backend/__init__.py @@ -10,6 +10,7 @@ from players import Player sio = socketio.Server(cors_allowed_origins="*") app = socketio.WSGIApp(sio, static_files={ '/': {'content_type': 'text/html', 'filename': 'index.html'}, + '/favicon.ico': {'filename': 'favicon.ico'}, '/css': './css', '/js': './js', })