Skip to content

Commit

Permalink
[FIX] cors 미사용 설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
happyjamy committed Feb 19, 2024
1 parent bba792a commit 781af20
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public SecurityFilterChain filterChainOAuth2(HttpSecurity http) throws Exception
private void configureCommonSecuritySettings(HttpSecurity httpSecurity) throws Exception {
httpSecurity
.httpBasic(AbstractHttpConfigurer::disable)
.cors(AbstractHttpConfigurer::disable)
.csrf(AbstractHttpConfigurer::disable)
.formLogin(AbstractHttpConfigurer::disable)
.rememberMe(AbstractHttpConfigurer::disable)
Expand Down

0 comments on commit 781af20

Please sign in to comment.