Skip to content

Commit

Permalink
[#64] chore: 쿠키 설정 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonstrup committed Feb 6, 2025
1 parent e231b54 commit 874fa6a
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public CorsConfigurationSource corsConfigurationSource() {
corsConfiguration.setAllowedOrigins(List.of(API_DOC_HOST, LOCAL_URL, JAKNAESO_WEB_VERCEL_APP));
corsConfiguration.setAllowedMethods(List.of("GET", "POST", "PUT", "PATCH", "DELETE"));
corsConfiguration.addAllowedHeader("*");
corsConfiguration.setAllowCredentials(true);

UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
source.registerCorsConfiguration("/**", corsConfiguration);
Expand Down

0 comments on commit 874fa6a

Please sign in to comment.