Skip to content

Commit

Permalink
Update WebConfig.java
Browse files Browse the repository at this point in the history
  • Loading branch information
junseokkim authored Jan 2, 2024
1 parent 6533432 commit fe1d6c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/teami/config/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void addCorsMappings(CorsRegistry registry) {
.allowedOrigins("http://localhost:8080", "http://localhost:3000", "https://handyteam.shop")
.allowCredentials(true)
.allowedHeaders("*")
.allowedMethods("*")
.allowedMethods("*");
}
}

0 comments on commit fe1d6c0

Please sign in to comment.