From 7967dfd72cb457945b7226225e1fdf5e7d9be8cc Mon Sep 17 00:00:00 2001 From: gwony Date: Sat, 4 Oct 2025 02:51:02 +0900 Subject: [PATCH] =?UTF-8?q?Bug:=20=EB=B2=84=EC=85=80=20=EC=A3=BC=EC=86=8C?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/yeoro/twogether/global/config/SecurityConfig.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/yeoro/twogether/global/config/SecurityConfig.java b/src/main/java/com/yeoro/twogether/global/config/SecurityConfig.java index 881a1d9..2412bad 100644 --- a/src/main/java/com/yeoro/twogether/global/config/SecurityConfig.java +++ b/src/main/java/com/yeoro/twogether/global/config/SecurityConfig.java @@ -27,6 +27,9 @@ public class SecurityConfig { @Value("${custom.site.frontUrl}") private String frontUrl; + @Value("${custom.site.vercelUrl}") + private String vercelUrl; + private final JwtAuthenticationFilter jwtAuthenticationFilter; public SecurityConfig(JwtAuthenticationFilter jwtAuthenticationFilter) { @@ -77,6 +80,7 @@ public UrlBasedCorsConfigurationSource corsConfigurationSource() { configuration.setAllowedOrigins( Arrays.asList( frontUrl, + vercelUrl, "http://localhost:3000", "https://localhost:3000", "https://localhost",