You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, in org.springframework.boot.autoconfigure.security.StaticResourceLocation, there is only favicon.ico support. Given that favicons can be SVG images now as well, it might be good to add support for those?
I believe just changing:
FAVICON("/**/favicon.ico");
to
FAVICON("/**/favicon.ico", "/**/favicon.svg");
should be enough?
(Note sure why there is /** in there. Aren't favicons located at the root always?)
The text was updated successfully, but these errors were encountered:
Currently, in
org.springframework.boot.autoconfigure.security.StaticResourceLocation
, there is onlyfavicon.ico
support. Given that favicons can be SVG images now as well, it might be good to add support for those?I believe just changing:
to
should be enough?
(Note sure why there is
/**
in there. Aren't favicons located at the root always?)The text was updated successfully, but these errors were encountered: