Heya, since we upgraded our application to version 22.2.0 we always get a weird error when Live Reload is triggered as you can see in the attachment…
We use Spring Security for Auth but with a pretty minimal configuration:
@EnableWebSecurity
@Configuration
public class SecurityConfiguration
extends VaadinWebSecurity {
@Bean
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder();
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/images/**", "/icons/**").permitAll();
super.configure(http);
setLoginView(http, LoginV.class);
}
}
Why is this error happening and how can we prevent it ?
