Skip to content

Commit 7d44c34

Browse files
committed
fix: cors disable 추가
1 parent 4d341f8 commit 7d44c34

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/oronaminc/join/member/security/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ public class SecurityConfig {
2323
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
2424
return http
2525
.csrf(csrf -> csrf.disable())
26+
.cors(cors -> cors.disable())
2627
.authorizeHttpRequests(auth -> auth
2728
.requestMatchers(
2829
"/api/auth/guest",

0 commit comments

Comments
 (0)