Using vsCode for JavaScript. Everytime I open live server in the terminal I get "GET/favicon.ico" which always leads to a 404 error since I don't have a favicon. Is there a way to stop this?
Browsers such as Chrome request "favicon.ico" by default.
If you are working on some site that does not need a favicon, here are some workarounds.
<link rel="icon" href="data:,"> to the head of all your html filesSince you mentioned settings, here are a couple things you can do to quickly get rid of the 404:
Block request url [you can disable this later]/ [dangerous, not recommended for this case]Keep in mind, the last two solutions will likely catch up to you if you actually want the default behavior to let you know when you did not add a favicon.