Site settings
Edit and manage settings for your entire published site
Some features are only available on premium sites.
Site name
Change your site name. If you don't have a custom domain set it will be used in the URL at which your site is published, i.e. https://my.flowershow.app/@<your-username>/<site-name>
.
Branch
Change the branch of the GitHub repository you're site is built from. Defaults to main
.
Root directory
Set path to the folder in your GitHub repository that you want to publish. Leave this field empty if you want to publish the entire repository.
For example, if you have a repository with your app's code and you wish to publish only it's documentation that you keep in /docs
, you can use this field to do that.
Auto-sync
Make your site content automatically publish after you commit any changes to your GitHub repository.
Comments
Show comments section at the bottom of your pages.
👉 See Comments to learn more.
Full-text search (⭐️ Premium feature)
Turn on content indexing and show search field in the nav bar to make finding relevant information easier for your visitors.
Custom domain (⭐️ Premium feature)
Set custom domain for your site.
🚧 More instructions coming soon!
Analytics
Enable Google Analytics tracking with analytics
field in your config file.
{
"analytics": "G-XXXXXXXXXX" // Your GA4 Tracking ID
}
👉 See Analytics to learn more.
Navigation bar
Customize your site's navigation bar. Set logo, title, links and socials.
{
"nav": {
"logo": "/path/to/logo.png",
...
}
}
👉 See Navigation bar to learn more.
Sidebar
Show your site's sitemap in a sidebar on the left.
{
"showSidebar": true
}
👉 See Sidebar to learn more.
"Edit this page" links
Show "Edit this page" links at the bottom of your site's pages to allow visitors to contribute to your content easily. Links will open the underlying files in edit mode in your GitHub repository.
{
"showEditLink": true
}
👉 See "Edit this page" links to learn more.
Excluding files from publishing
Control which files and directories get published.
{
"contentExclude": [
"/private-folder",
"/draft-file.md"
]
}
👉 See Content filtering to learn more.