The configuration should look like this ``` @EnableWebSecurity class SecurityConfig : WebSecurityConfigurerAdapter() { override fun configure(http: HttpSecurity) { http { headers { disable() } } } } ```
The configuration should look like this