diff --git a/cmd/flamenco-manager/main.go b/cmd/flamenco-manager/main.go index 7e063747..491313c0 100644 --- a/cmd/flamenco-manager/main.go +++ b/cmd/flamenco-manager/main.go @@ -306,6 +306,9 @@ func buildWebService( // Serve the Blender add-on. It's contained in the static files of the webapp. e.GET("/flamenco3-addon.zip", echo.WrapHandler(webAppHandler)) + // The favicons are also in the static files of the webapp. + e.GET("/favicon.png", echo.WrapHandler(webAppHandler)) + e.GET("/favicon.ico", echo.WrapHandler(webAppHandler)) // Redirect / to the webapp. e.GET("/", func(c echo.Context) error {