Skip to content

Commit

Permalink
[feature/#275] production cors 수정
Browse files Browse the repository at this point in the history
[feature/#275] production cors 수정
  • Loading branch information
whitem4rk authored Apr 1, 2024
2 parents b0783c6 + c6f9d09 commit 1956ca5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void addCorsMappings(CorsRegistry registry) {
.addMapping("/**")
.allowedOrigins("https://inhabas.com")
.allowedMethods("OPTIONS", "GET", "POST", "PUT", "DELETE")
.allowedHeaders("Authorization", "Content-Type")
.allowedHeaders("Authorization")
.maxAge(3600);
}
}

0 comments on commit 1956ca5

Please sign in to comment.