diff --git a/server/main.go b/server/main.go index aef3b7e..27ddb94 100644 --- a/server/main.go +++ b/server/main.go @@ -130,7 +130,7 @@ func main() { fileServer.ServeHTTP(c.Writer, c.Request) return } - if path == "/favicon.ico" { + if path == "/favicon.ico" || path == "/logo.svg" || path == "/favicon.png" || path == "/apple-touch-icon.png" { fileServer.ServeHTTP(c.Writer, c.Request) return } @@ -153,7 +153,7 @@ func main() { fileServer.ServeHTTP(c.Writer, c.Request) return } - if path == "/favicon.ico" { + if path == "/favicon.ico" || path == "/logo.svg" || path == "/favicon.png" || path == "/apple-touch-icon.png" { fileServer.ServeHTTP(c.Writer, c.Request) return }