Skip to content

Commit 0e68b1a

Browse files
committed
디버깅 모드 켜기
1 parent bf3b89e commit 0e68b1a

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

backend/src/main/java/_team/onmyway/config/SecurityConfig.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import org.springframework.security.web.SecurityFilterChain;
1818
import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
1919

20-
@EnableWebSecurity
20+
@EnableWebSecurity(debug = true)
2121
@Configuration
2222
@RequiredArgsConstructor
2323
public class SecurityConfig {
@@ -34,7 +34,6 @@ SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
3434
.cors(cors -> cors.configurationSource(corsConfigurationSource()))
3535
.authorizeHttpRequests(authorizeRequests -> authorizeRequests
3636
.requestMatchers(
37-
"/**",
3837
"/",
3938
"/find-route",
4039
"/index.html",

0 commit comments

Comments
 (0)