eagle0504's picture
app updated
746d2f1

A newer version of the Streamlit SDK is available: 1.48.1

Upgrade
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:",
)