Skip to content

Commit

Permalink
Merge pull request #198 from GSM-MSG/197-update/cors
Browse files Browse the repository at this point in the history
# 197 CORS 이슈 해결
  • Loading branch information
JuuuuHong authored Jan 29, 2024
2 parents 5728914 + 9654823 commit aa44def
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/team/msg/hiv2/global/config/WebMvcConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ class WebMvcConfig : WebMvcConfigurer {
.allowedMethods("GET", "POST", "PUT", "PATCH", "HEAD", "DELETE", "OPTIONS")
.allowedOrigins(
"http://localhost:3000",
"https://dev-hi.msg-team.com"
"https://msg-hi.vercel.app/",
"https://port-0-hi-v2-backend-p8xrq2mlfszgkzn.sel3.cloudtype.app/"
)
.allowCredentials(true)
}
Expand Down

0 comments on commit aa44def

Please sign in to comment.