0

I am using Angular framework and I have implemented a app for changing favicon. When I changed the icon by using app, it's not changed.When I clear the cache and reload, it worked well. But I want to do that when I save the new favicon.

1 Answers1

1

To refresh your favicon you can force browsers to download a new version using the link tag and a querystring on your filename.

<link rel="icon" href="http://www.yoursite.com/favicon.ico?v=2" />
Fareed Khan
  • 2,613
  • 1
  • 11
  • 19