Skip to content

Commit

Permalink
fix: cors Credentials 추가 (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
junpakPark authored Sep 20, 2023
1 parent 21081b9 commit 954199c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public void addCorsMappings(CorsRegistry registry) {
.allowedOrigins("http://localhost:3000", "https://mapbefine.kro.kr", "https://mapbefine.com")
.allowedHeaders(COOKIE)
.allowedMethods("*")
.allowCredentials(true)
.exposedHeaders(LOCATION, SET_COOKIE);
}

Expand Down

0 comments on commit 954199c

Please sign in to comment.