Skip to content

Commit

Permalink
fix : allow credential true
Browse files Browse the repository at this point in the history
  • Loading branch information
wellbeing-dough committed Dec 12, 2023
1 parent 1a05699 commit 52bc80f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/co/kr/jurumarble/config/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public void addCorsMappings(final CorsRegistry registry) {
registry.addMapping("/**")
.allowedMethods(ALLOWED_METHOD_NAMES.split(","))
.allowedOrigins("http://localhost:3000","https://jurumarble-git-develop-chooz.vercel.app/","https://jurumarble.site","https://jurumarble.vercel.app/")
.allowCredentials(true)
.maxAge(3600);
}

Expand Down

0 comments on commit 52bc80f

Please sign in to comment.