From b95ef3144c3bce1c8cf2a239bf56b8a0587d3986 Mon Sep 17 00:00:00 2001 From: bjkim Date: Mon, 1 Sep 2025 19:36:20 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 d8f1e77..a1bc31c 100644 --- a/src/main/java/kr/re/etri/autoflow/common/WebConfiguration.java +++ b/src/main/java/kr/re/etri/autoflow/common/WebConfiguration.java @@ -16,7 +16,7 @@ public class WebConfiguration implements WebMvcConfigurer { .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") .allowedHeaders("*") // 필요하면 "cuuva-jwt", "Content-Type", "Authorization" 명시 가능 .exposedHeaders("cuuva-jwt") - .allowCredentials(true) + //.allowCredentials(true) .maxAge(3600); }