Skip to content

Commit

Permalink
Merge pull request #89 from 100-hours-a-week/fix/cors-config
Browse files Browse the repository at this point in the history
hotfix: localhost CORS 설정 수정
  • Loading branch information
Namgyu11 authored Aug 26, 2024
2 parents a27cf81 + a0d0ebb commit 4609715
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public SecurityFilterChain filterChain(HttpSecurity httpSecurity) throws Excepti
public CorsConfigurationSource corsConfigurationSource() {
CorsConfiguration configuration = new CorsConfiguration();
configuration.setAllowedOrigins(Arrays.asList(
"http://localhost",
"http://localhost:3000",
"https://dev.connectrip.kro.kr",
"https://connectrip.kro.kr"
));
Expand Down

0 comments on commit 4609715

Please sign in to comment.