From 58f88ca566dffcd24c241d1746fa078a9a92c254 Mon Sep 17 00:00:00 2001 From: bjkim Date: Mon, 1 Sep 2025 17:28:33 +0900 Subject: [PATCH] =?UTF-8?q?[MOD]=20jwt=20cors=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/kr/re/etri/autoflow/common/WebConfiguration.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/kr/re/etri/autoflow/common/WebConfiguration.java b/src/main/java/kr/re/etri/autoflow/common/WebConfiguration.java index 673ae55..4ad7332 100644 --- a/src/main/java/kr/re/etri/autoflow/common/WebConfiguration.java +++ b/src/main/java/kr/re/etri/autoflow/common/WebConfiguration.java @@ -21,6 +21,7 @@ public class WebConfiguration implements WebMvcConfigurer { HttpMethod.DELETE.name()) .allowedHeaders("cuuva-jwt", "Content-Type", "Authorization") .exposedHeaders("cuuva-jwt") // 응답에서 노출 필요 시 + .allowCredentials(true) .maxAge(3600); }