Skip to content

Commit

Permalink
Merge pull request #91 from cho1n/main
Browse files Browse the repository at this point in the history
Fix: CorsConfig 파일 수정
  • Loading branch information
JeongHeumChoi authored Feb 14, 2024
2 parents 0c59af9 + 6eec819 commit 9edb3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/sideproject/puddy/config/CorsConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public CorsFilter corsFilter() {
CorsConfiguration configuration = new CorsConfiguration();

configuration.setAllowCredentials(true);
configuration.addAllowedOriginPattern("https://puddy-sp-frontend.vercel.app/");
configuration.addAllowedOriginPattern("*");
configuration.addAllowedHeader("*");
configuration.addAllowedMethod("*");
configuration.addExposedHeader("Authorization");
Expand Down

0 comments on commit 9edb3c7

Please sign in to comment.