Skip to content

Commit

Permalink
Merge pull request #77 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 a1c782c + 6b327d3 commit b87c039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/hanaro/triptogether/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public void addCorsMappings(CorsRegistry registry) {
.addMapping("/**")
.allowedHeaders("*")
.allowedMethods("*")
.allowedOrigins("http://localhost:5173")
.allowedOrigins("*")
.allowCredentials(true);
}
}

0 comments on commit b87c039

Please sign in to comment.