Skip to content

Commit

Permalink
Merge pull request TeamMajorLink#54 from kchaeeun/develop
Browse files Browse the repository at this point in the history
 πŸš‘ [HOTFIX] CORS μ—λŸ¬λ‘œ 인해 κΆŒν•œ μˆ˜μ •
  • Loading branch information
kchaeeun authored Aug 19, 2024
2 parents 4c5d792 + 818bacb commit 5d05557
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public void addCorsMappings(CorsRegistry registry) {
"http://localhost:3004"
) //ν”„λ‘ νŠΈ ν…ŒμŠ€νŠΈ urlμž…λ‹ˆλ‹€.
.allowedMethods("POST", "GET", "DELETE", "PUT", "PATCH")
.allowedHeaders("*");
.allowedHeaders("*")
.allowCredentials(true);
}
}

0 comments on commit 5d05557

Please sign in to comment.