Skip to content

Commit

Permalink
[MERGE/#103] 웹 설정파일 서버 도메인 추가
Browse files Browse the repository at this point in the history
[FIX] #103 - 웹 설정파일 서버 도메인 추가
  • Loading branch information
seokbeom00 authored Jul 17, 2024
2 parents 102190c + a15e116 commit f05885a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class WebConfig implements WebMvcConfigurer {
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:8080", "http://localhost:8081", "http://localhost:5173",
"https://api.seonyak-dev.kro.kr")
"https://api.seonyak-dev.kro.kr", "https://www.seonyak.com")
.allowedMethods("GET", "POST", "PUT", "DELETE")
.allowedHeaders("*")
.allowCredentials(true)
Expand Down

0 comments on commit f05885a

Please sign in to comment.