How to hide "· Streamlit" in app name

As a temporary workaround, you can modify the streamlit frontend main file to remove “· Streamlit” from the title.

  1. Go to site-packages/streamlit/static/static/js/ and find the ‘main…chunk.js’ file and open it.
  2. Search for document.title="".concat(t," \xb7 Streamlit") and replace it with document.title="".concat(t,"")
  3. Restart streamlit app and “· Streamlit” should be gone from the title
3 Likes