Skip to content

Commit

Permalink
♻️ cors 허용 도메인 원상복귀
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdals4716 committed Nov 2, 2024
1 parent 05ce463 commit 8dee11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/example/moyeothon/Config/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void addCorsMappings(CorsRegistry registry) {
"http://localhost:5173",
"http://127.0.0.1:5173",
"https://newteamsgoody.shop",
"https://moyeothon.vercel.app/")
"https://moyeothon.vercel.app")
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
.allowedHeaders("*")
.allowCredentials(true)
Expand Down

0 comments on commit 8dee11e

Please sign in to comment.