Skip to content

Commit

Permalink
Merge pull request TeamMajorLink#49 from kimdavid0521/feat#48
Browse files Browse the repository at this point in the history
도커 테스트용
  • Loading branch information
kimdavid0521 authored Aug 18, 2024
2 parents 44d68a5 + 1f77cfc commit 6157342
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:3000", "http://localhost:3007","http://localhost:3008") //프론트 테스트 url
.allowedOrigins("http://localhost:3000", "http://localhost:3007","http://localhost:3008") //프론트 테스트 url입니다.
.allowedMethods("POST", "GET", "DELETE", "PUT", "PATCH")
.allowedHeaders("*");
}
Expand Down

0 comments on commit 6157342

Please sign in to comment.