From 687608a0e72cfb0bfe001a8c1a12b4981870a8e2 Mon Sep 17 00:00:00 2001 From: Reinaldy Rafli Date: Sat, 21 Oct 2023 11:53:03 +0700 Subject: [PATCH] fix: move site endpoint --- backend/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/server.go b/backend/server.go index 7427a77..77a7fa9 100644 --- a/backend/server.go +++ b/backend/server.go @@ -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") }