From a25a7d6824f08993dc501fdc9b4a407ee1c7f643 Mon Sep 17 00:00:00 2001 From: suhyun Date: Fri, 5 Jan 2024 16:37:37 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20cors=EC=97=90=EB=9F=AC=20=ED=95=B4?= =?UTF-8?q?=EA=B2=B0=EC=9D=84=20=EC=9C=84=ED=95=9C=20=EC=A3=BC=EC=86=8C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20=EB=B0=8F=20PATCH=20=EB=A9=94=EC=86=8C?= =?UTF-8?q?=EB=93=9C=20=ED=97=88=EC=9A=A9=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/example/petree/global/config/WebConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/example/petree/global/config/WebConfig.java b/src/main/java/com/example/petree/global/config/WebConfig.java index 3c405ba..40e61cd 100644 --- a/src/main/java/com/example/petree/global/config/WebConfig.java +++ b/src/main/java/com/example/petree/global/config/WebConfig.java @@ -26,7 +26,7 @@ public void addCorsMappings(CorsRegistry registry) { .addMapping("/**") // 프로그램에서 제공하는 URL .allowedOrigins("http://localhost:3000", "https://www.nextpetree.store", "https://nextpetree.store") // 청을 허용할 출처를 명시, 전체 허용 (가능하다면 목록을 작성한다. .allowedHeaders("*") // 어떤 헤더들을 허용할 것인지 - .allowedMethods("OPTIONS", "GET", "POST", "PUT", "DELETE") + .allowedMethods("OPTIONS", "GET", "POST", "PUT", "DELETE", "PATCH") .allowCredentials(true); // 쿠키 요청을 허용한다(다른 도메인 서버에 인증하는 경우에만 사용해야하며, true 설정시 보안상 이슈가 발생할 수 있다) // .maxAge(1500) // preflight 요청에 대한 응답을 브라우저에서 캐싱하는 시간 ; }