문제 상황

백엔드 부분의 문제…?

protected SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http.

...

      .antMatchers("/store/**").authenticated()
      .anyRequest().permitAll()

      .and()
      .apply(new JwtSecurityConfig(tokenProvider));

    return http.build();
  }

프론트엔드의 문제…?

Untitled