diff --git a/src/server/server.go b/src/server/server.go index f0467e1..3a7462e 100644 --- a/src/server/server.go +++ b/src/server/server.go @@ -72,7 +72,7 @@ func (s *Server) SetupMiddleware() { s.Router.Use(crs) } else { crs := cors.New(cors.Options{ - AllowedOrigins: []string{"https://kycnot.me", "https://*.kycnot.me"}, // allows everything, use that to change the hosts. + AllowedOrigins: []string{"*"}, // allows everything, use that to change the hosts. AllowCredentials: true, }) s.Router.Use(crs)