Skip to content

Commit

Permalink
sercurity config 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yooonwodyd committed Feb 20, 2024
1 parent 9629715 commit 1087995
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public SecurityFilterChain securityFilterChain(
.requestMatchers("/loginPage/login").permitAll()
.requestMatchers("/api/**").permitAll() //구현의 편의를 위해 임시 개방
.requestMatchers("/login/**").permitAll()
.anyRequest().authenticated()
.anyRequest().permitAll()
);
http.csrf(csrf -> csrf.disable())
.cors(cors -> cors.configurationSource(corsConfigurationSource()))
Expand Down

0 comments on commit 1087995

Please sign in to comment.