Skip to content

Commit

Permalink
Merge pull request #117 from mash-up-kr/fix/cors
Browse files Browse the repository at this point in the history
fix: CORS credentials
  • Loading branch information
KimDoubleB authored Jul 29, 2024
2 parents 5ceed29 + b6374e4 commit 68f0242
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class WebConfig : WebMvcConfigurer {
.allowedOrigins("*")
.allowedMethods("GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS")
.allowedHeaders("*")
.allowCredentials(true)
.allowCredentials(false)
.maxAge(3600)
}
}

0 comments on commit 68f0242

Please sign in to comment.