Skip to content

Commit

Permalink
fix: 포트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
zzawang committed May 29, 2024
1 parent 7f25f41 commit 5d8b82b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOriginPatterns("https://issue-tracker.site/*:443", "http://*:3000")
.allowedOriginPatterns("https://issue-tracker.site/*", "http://*:3000")
.allowedMethods("GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS")
.allowedHeaders("*")
.allowCredentials(true);
Expand Down

0 comments on commit 5d8b82b

Please sign in to comment.