How to customize browser bar logo

Hi,
is there a way to customize browser bar logo? it’s dash logo by default.

17_19_55__04_11_2019

You can change it to the image you want by saving the image as favicon.ico in your assets folder. See the docs on external resources for some more information.

If you want more control than that you can write a custom HTML template for you app and include something like

<link rel="shortcut icon" type="image/png" href="/static/images/favicon.png">

in the header. There’s information on custom HTML strings on the same page of the docs linked above.

1 Like