<aside> 💡 new AntPathRequestMatcher를 사용하자

</aside>

@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
    http.csrf().disable().cors().disable()
            .authorizeHttpRequests(authorize ->
                    authorize.requestMatchers(new AntPathRequestMatcher("/**")).permitAll()
            );
    return http.build();
}