Skip to content

Commit

Permalink
Merge pull request #88 from everymeals/feature/store-post-review
Browse files Browse the repository at this point in the history
chore : 도메인 http 추가
  • Loading branch information
Qbeom0925 authored Feb 6, 2024
2 parents 695e3ee + dc1363b commit 77376f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void addArgumentResolvers(List<HandlerMethodArgumentResolver> resolvers)
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("dev.everymeal.shop:8085") // 허용할 출처
.allowedOrigins("http://dev.everymeal.shop:8085") // 허용할 출처
.allowedMethods("*") // 허용할 HTTP method
.allowedHeaders("*") // 허용할 HTTP Header
.allowCredentials(true) // 쿠키 인증 요청 허용
Expand Down

0 comments on commit 77376f4

Please sign in to comment.