From a0ecd52692f6c478b05437e78377f2da929f05cb Mon Sep 17 00:00:00 2001 From: boram <128011308+bo-ram-bo-ram@users.noreply.github.com> Date: Mon, 8 Jul 2024 21:54:27 +0900 Subject: [PATCH] =?UTF-8?q?hotfix=20:=20pickple=20=EB=8F=84=EB=A9=94?= =?UTF-8?q?=EC=9D=B8=20=EB=B0=98=EC=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/pickple/server/global/config/WebConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/pickple/server/global/config/WebConfig.java b/src/main/java/com/pickple/server/global/config/WebConfig.java index 5c979b7b..2722a5ac 100644 --- a/src/main/java/com/pickple/server/global/config/WebConfig.java +++ b/src/main/java/com/pickple/server/global/config/WebConfig.java @@ -9,7 +9,7 @@ public class WebConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") - .allowedOrigins(("http://localhost:8080", "http://localhost:8081", "http://localhost:5173", + .allowedOrigins("http://localhost:8080", "http://localhost:8081", "http://localhost:5173", "https://pick-ple.com:5173") .allowedMethods("GET", "POST", "PUT", "DELETE") .allowCredentials(true)