From 0e93cc0e9506106beb8d18acdfe1fbef52504786 Mon Sep 17 00:00:00 2001 From: huuuunee Date: Fri, 12 Jul 2024 23:27:14 +0900 Subject: [PATCH] =?UTF-8?q?add:=20CORS=20=EA=B0=92=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/kotlin/team/msg/sms/common/WebMvcConfig.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sms-presentation/src/main/kotlin/team/msg/sms/common/WebMvcConfig.kt b/sms-presentation/src/main/kotlin/team/msg/sms/common/WebMvcConfig.kt index 2754a694..0bd7192f 100644 --- a/sms-presentation/src/main/kotlin/team/msg/sms/common/WebMvcConfig.kt +++ b/sms-presentation/src/main/kotlin/team/msg/sms/common/WebMvcConfig.kt @@ -12,7 +12,8 @@ class WebMvcConfig : WebMvcConfigurer { .allowedMethods("GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS") .allowedOrigins( "http://localhost:3000", - "https://sms.msg-team.com" + "https://sms.msg-team.com", + "https://sms-test.msg-team.com" ) .allowedHeaders("*") .allowCredentials(true)