diff --git a/apps/backend/server.go b/apps/backend/server.go index f8d07ac..3104740 100644 --- a/apps/backend/server.go +++ b/apps/backend/server.go @@ -24,7 +24,7 @@ func main() { e := echo.New() skipper := func(c *echo.Context) bool { // Skip health check endpoint - return c.Request().URL.Path == "/health" + return c.Request().URL.Path == "/health" || c.Request().URL.Path == "/" } e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{