File size: 521 Bytes
746d2f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
title: How to remove "路 Streamlit" from the app title?
slug: /knowledge-base/using-streamlit/remove-streamlit-app-title
---

# How to remove "路 Streamlit" from the app title?

Using [`st.set_page_config`](/develop/api-reference/configuration/st.set_page_config) to assign the page title will not append "路 Streamlit" to that title. E.g.:

```python
import streamlit as st

st.set_page_config(
   page_title="Ex-stream-ly Cool App",
   page_icon="馃",
   layout="wide",
   initial_sidebar_state="expanded",
)
```