Skip to content

Commit

Permalink
Merge pull request #238 from gunsight1/hotfix_add_cors_domain
Browse files Browse the repository at this point in the history
* 프론트 개발 배포서버 추가
  • Loading branch information
gunsight1 authored Mar 3, 2024
2 parents 3dc31aa + 8dde2e9 commit 9f3aa6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void addCorsMappings(CorsRegistry registry) {
.allowedHeaders("*")
.allowedMethods("*")
.allowCredentials(true)
.allowedOrigins("https://www.washfit.site", "https://dev.washfit.site", "http://localhost:3000")
.allowedOrigins("https://www.washfit.site", "https://dev.washfit.site", "http://localhost:3000", "https://f1-wash-pedia-fe-lim-byeong-wooks-projects.vercel.app/")
.maxAge(3600);
}
}

0 comments on commit 9f3aa6c

Please sign in to comment.