Skip to content

Commit

Permalink
Merge pull request #118 from Katchup-dev/fix/#117-exposed-header
Browse files Browse the repository at this point in the history
[FIX] exposedheaders에 location 추가
  • Loading branch information
Seokyeong237 authored Aug 23, 2023
2 parents 9bb6af1 + d46b63c commit 8084ecd
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public void addCorsMappings(CorsRegistry registry) {
.allowedOrigins("https://www.katchup.kr", "http://localhost:3000")
.allowedMethods("GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS")
.allowedHeaders("*")
.exposedHeaders("Location")
.allowCredentials(true)
.maxAge(MAX_AGE_SECS);
}
Expand Down

0 comments on commit 8084ecd

Please sign in to comment.