Skip to content

Commit

Permalink
Merge pull request #78 from Hanaro-trip-together-bank/setting
Browse files Browse the repository at this point in the history
setting: cors수정
  • Loading branch information
mummhy0811 authored May 30, 2024
2 parents b87c039 + 768314c commit 6298eb3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/hanaro/triptogether/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public void addCorsMappings(CorsRegistry registry) {
.addMapping("/**")
.allowedHeaders("*")
.allowedMethods("*")
.allowedOrigins("*")
.allowCredentials(true);
.allowedOrigins("*");
}
}

0 comments on commit 6298eb3

Please sign in to comment.