diff --git a/src/main/kotlin/com/msg/gauth/global/config/web/WebMvcConfig.kt b/src/main/kotlin/com/msg/gauth/global/config/web/WebMvcConfig.kt index 55bd1dd5..4f159c31 100644 --- a/src/main/kotlin/com/msg/gauth/global/config/web/WebMvcConfig.kt +++ b/src/main/kotlin/com/msg/gauth/global/config/web/WebMvcConfig.kt @@ -8,7 +8,7 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer class WebMvcConfig: WebMvcConfigurer { override fun addCorsMappings(registry: CorsRegistry) { registry.addMapping("/**") - .allowedOrigins("http://localhost:3000", "https://gauth.co.kr", "https://www.gauth.co.kr", "https://dev-gauth-frontend.vercel.app") + .allowedOrigins("http://localhost:3000", "https://gauth.co.kr", "https://www.gauth.co.kr", "https://dev-gauth-frontend.vercel.app", "https://gauth-sigma.vercel.app") .allowedMethods("*") .allowedHeaders("*") .exposedHeaders("Authorization")