Hacker News new | ask | show | jobs
by Etheryte 995 days ago
As an alternative approach you can use an empty data URL to get an empty favicon:

  <link rel="icon" type="image/svg+xml" href="data:image/svg+xml," />
2 comments

or just "ignore" the favicon altogether:

  <link rel="icon" href="data:," />
That's neat, didn't know something as short as that was valid, thanks for the tip.
And its dependency free - Nice!

Thank you