ignore favicon 404s

This commit is contained in:
Egor 2026-02-16 18:25:20 -08:00
parent 3fa96bbfa6
commit 66968834fb

View file

@ -14,7 +14,8 @@ import (
var noisyPaths = map[string]bool{ var noisyPaths = map[string]bool{
"/.well-known/appspecific/com.chrome.devtools.json": true, "/.well-known/appspecific/com.chrome.devtools.json": true,
"/health": true, "/health": true,
"/favicon.ico": true,
} }
func authMiddleware(apiKey string) func(http.Handler) http.Handler { func authMiddleware(apiKey string) func(http.Handler) http.Handler {