I am currently coding a React.js application. I want to change the icon, so I deleted the default one and pasted the new one in the public folder. When I start the application, the icon does not change, and it's still the default one. Thanks for any help.
<link rel="icon" href="./favicon.ico" />
I emptied the cache of my browser, and now it works fine!
Try adding these lines in your index.html if your favicon is in public > favicon.ico
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">