Skip to content

Commit

Permalink
fix: move site endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
aldy505 committed Oct 21, 2023
1 parent 88e6801 commit 687608a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func NewServer(config *ServerConfig) *echo.Echo {
e.Use(sentryMiddleware)

// NOTE: Only need to handle CORS, everything else is being handled by the API gateway
corsAllowedOrigins := []string{"https://conf.teknologiumum.com"}
corsAllowedOrigins := []string{"https://conference.teknologiumum.com"}
if config.Environment != "production" {
corsAllowedOrigins = append(corsAllowedOrigins, "http://localhost:3000")
}
Expand Down

0 comments on commit 687608a

Please sign in to comment.