favicon should not be behind authentication

This commit is contained in:
2026-05-09 23:42:14 +02:00
parent 3bea76cf4c
commit e7de8b0ad6
+1 -1
View File
@@ -4,7 +4,7 @@ from nicegui import app
from starlette.middleware.base import BaseHTTPMiddleware
unrestricted_page_routes = {"/login"}
unrestricted_page_routes = {"/favicon.ico", "/login"}
class AuthMiddleware(BaseHTTPMiddleware):