Skip to content

Commit 8bd4d2a

Browse files
committed
[Fix]:홈화면 예외 추가
1 parent dd17e24 commit 8bd4d2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/backend/global/security/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
3636
.requestMatchers("/billing.html", "/payments/**", "/toss/**").permitAll()
3737

3838
// 공개 API (기존)..
39-
.requestMatchers("/favicon.ico", "/h2-console/**", "/actuator/health").permitAll()
39+
.requestMatchers("/", "/favicon.ico", "/h2-console/**", "/actuator/health").permitAll()
4040
.requestMatchers("/api/v1/auth/**", "/swagger-ui/**", "/v3/api-docs/**",
4141
"/swagger-ui.html", "/webjars/**", "/notifications/**", "/ws/**",
4242
"/api/test/**", "/bid-test.html", "/websocket-test.html").permitAll()

0 commit comments

Comments
 (0)