32 lines
494 B
TOML
32 lines
494 B
TOML
# for local development
|
|
[server]
|
|
|
|
#no default browser
|
|
headless = true
|
|
|
|
# for local development
|
|
runOnSave = true
|
|
|
|
# Limit uploads (MB). Excel files here are small; adjust if needed
|
|
maxUploadSize = 5
|
|
|
|
# for local development
|
|
fileWatcherType="poll"
|
|
|
|
|
|
[theme]
|
|
base="light"
|
|
primaryColor = "#001d68"
|
|
backgroundColor = "#FFFFFF"
|
|
secondaryBackgroundColor = "#F4F6FA"
|
|
textColor = "#111827"
|
|
font = "sans serif"
|
|
|
|
[client]
|
|
toolbarMode = "minimal"
|
|
|
|
[ui]
|
|
hideTopBar = true
|
|
|
|
[browser]
|
|
gatherUsageStats = false |