Skip to content

Commit

Permalink
fix(core): remove debug flag in cors middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
ayuhito committed Jun 13, 2024
1 parent e770505 commit 430e23e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/middlewares/cors.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ func CORSAllowedOriginsMiddleware(allowedOrigins []string) func(http.Handler) ht
customCORS := cors.New(cors.Options{
AllowedOrigins: allowedOrigins,
AllowCredentials: true,
Debug: true,
})

// Create a default CORS handler
Expand Down

0 comments on commit 430e23e

Please sign in to comment.