Skip to content

Commit

Permalink
fix: cors에러 해결을 위한 주소 변경 및 PATCH 메소드 허용 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Suxxxxhyun committed Jan 5, 2024
1 parent f972b6b commit a25a7d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 요청에 대한 응답을 브라우저에서 캐싱하는 시간 ;
}
Expand Down

0 comments on commit a25a7d6

Please sign in to comment.