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 5d8b82b commit 1e736dc
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/*", "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 1e736dc

Please sign in to comment.