Hi
I’ve made the title of the browser tab with the next script:
@server.route("/")
def main_tab_title():
app.title = "Title"
return app.index()
But when I run my dash app the browser tab is named “Dash”. And this title changes only after reloading the page. How can I delete the “Dash” title?