I removed @PWA annotation from my Application. Now I need to add a favicon. I know how to add favicon to the PWA Vaadin application, but how to do the same for non-PWA application? Where it should be placed and how to configure it?
Asked
Active
Viewed 268 times
0
-
Check out https://vaadin.com/docs/latest/advanced/loading-resources#resource-cheat-sheet – Simon Martinelli Oct 26 '22 at 12:13
-
I tried to place it under /src/main/webapp/favicon.icon - it doesn't work – alexanoid Oct 26 '22 at 17:30
-
Also, I have META-INF/resources folder. Maybe it should be placed somewhere there? – alexanoid Oct 26 '22 at 17:31
-
3Works now, thanks! In additional to what suggested above, I added ignore rule to my Spring security and added exclusion to my Maven resource filtering. Thanks for the help! – alexanoid Oct 29 '22 at 20:07