Исправлен 401 на site.webmanifest

This commit is contained in:
serega6531
2019-05-06 20:47:14 +03:00
parent bcc1221cbe
commit e5fbb58911

View File

@@ -42,6 +42,8 @@ public class ApplicationConfiguration extends WebSecurityConfigurerAdapter imple
http.csrf() http.csrf()
.disable() .disable()
.authorizeRequests() .authorizeRequests()
.antMatchers("/site.webmanifest")
.permitAll()
.anyRequest().authenticated() .anyRequest().authenticated()
.and() .and()
.httpBasic(); .httpBasic();