Spaces:
Sleeping
Sleeping
A newer version of the Streamlit SDK is available:
1.48.1
metadata
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.
st.set_page_config(
page_title="My app",
page_icon=":shark:",
)