Skip to content

Commit

Permalink
[Feature] - FE develop CORS 처리 (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
eunjungL authored Jul 24, 2024
1 parent 915ff3f commit 2d73e61
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:3000");
.allowedOrigins("http://localhost:3000")
.allowedOrigins("https://dev.touroot.kr");
}
}

0 comments on commit 2d73e61

Please sign in to comment.