ignore favicon 404s

This commit is contained in:
lone-cloud 2026-02-16 18:25:20 -08:00
parent d69651ecda
commit f29f79e04c

View file

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