Skip to content

Commit

Permalink
[chore] cors 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hysong4u committed Oct 6, 2024
1 parent f7c74e3 commit 981c88d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public CorsFilter corsFilter() {
config.setAllowCredentials(true);
config.addAllowedOrigin("http://localhost:3000");
config.addAllowedOrigin("https://hack-dive-front.vercel.app");
config.addAllowedOrigin(" https://singular-gecko-922cd1.netlify.app");
config.addAllowedOrigin("https://singular-gecko-922cd1.netlify.app");

config.addAllowedHeader("*");
config.setAllowedMethods(Arrays.asList("HEAD", "GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"));
Expand Down

0 comments on commit 981c88d

Please sign in to comment.