Skip to content

Commit

Permalink
[fix] : CorsConfig 프론트 배포 url 수정 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
chahyunsoo committed May 11, 2024
1 parent 5498fbc commit e33a245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seoul/gonggong/global/config/CorsConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public CorsFilter corsFilter() {
configuration.setAllowCredentials(true);

configuration.setAllowedOrigins(Arrays.asList("http://localhost:3000", "https://bokdakbang.store",
"https://bokdak-bang.vercel.app"));
"https://bokdak-bang.netlify.app"));
configuration.addAllowedHeader("*");
configuration.setAllowedMethods(Arrays.asList("HEAD", "GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"));

Expand Down

0 comments on commit e33a245

Please sign in to comment.