Skip to content

Commit

Permalink
Fix: MVC allowedOrigin 링크 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
suminiee authored Aug 20, 2024
2 parents c472c0f + 2a1e8bc commit 5abe501
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:3000",
"http://0.0.0.0:3000",
"https://d14yvif52hqxqx.cloudfront.net/")
"https://d14yvif52hqxqx.cloudfront.net")
.allowedMethods("GET","POST","PUT","DELETE", "PATCH")
.allowCredentials(true);

Expand Down

0 comments on commit 5abe501

Please sign in to comment.