Skip to content

Commit

Permalink
Merge pull request #232 from gunsight1/test_add_webconfig_cors_frontend
Browse files Browse the repository at this point in the history
프론트엔드 접근용 url 추가
  • Loading branch information
gunsight1 authored Feb 29, 2024
2 parents 0b97e8b + 1696657 commit 1f075ac
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")
.allowedOrigins("https://www.washfit.site", "https://dev.washfit.site", "http://localhost:3000")
.maxAge(3600);
}
}

0 comments on commit 1f075ac

Please sign in to comment.