Task: Add Hybrid for Vaadin Fusion and Flow together, but have some issues with Login recursively routes

This commit is contained in:
2021-07-25 20:04:59 +07:00
parent 85b1573391
commit 05e6fe2447
11 changed files with 54 additions and 28 deletions

View File

@@ -33,6 +33,9 @@ public class SecurityConfiguration extends VaadinWebSecurityConfigurerAdapter {
@Override
public void configure(WebSecurity web) throws Exception {
super.configure(web);
web.ignoring().antMatchers("/images/logo.png");
web.ignoring()
.antMatchers(
"/images/logo.png"
);
}
}