Zum Hauptinhalt springen
Every Mintlify site now uses a docs.json file for global configuration. In this repo, that file lives at the root of the docs app and controls the site name, theme, navigation, branding, navbar, footer, and SEO behavior.

Minimal structure

{
  "$schema": "https://mintlify.com/docs.json",
  "theme": "mint",
  "name": "Silo Software Dokumentation",
  "colors": {
    "primary": "#ff3c00"
  },
  "navigation": [
    {
      "group": "Get Started",
      "pages": ["introduction", "quickstart", "development"]
    }
  ]
}

What this repo configures

  • theme, name, and colors define the global visual system.
  • logo, favicon, fonts, and appearance control branding and light/dark behavior.
  • navigation defines languages, tabs, groups, anchors, and page order.
  • navbar configures the support link and the primary dashboard button.
  • footer configures socials and the link columns.
  • seo and styling control indexing and code block rendering behavior.

Upgrading from mint.json

If you still have an old mint.json file, use the current Mint CLI to migrate it:
mint upgrade
That command generates a docs.json file from the deprecated config. After you verify the output, delete mint.json.

Official references