--- title: Configuration slug: /develop/api-reference/configuration --- # Configuration

Configuration file

Configures the default settings for your app. ``` your-project/ ├── .streamlit/ │ └── config.toml └── your_app.py ```

Set page title, favicon, and more

Configures the default settings of the page. ```python st.set_page_config( page_title="My app", page_icon=":shark:", ) ```