Set up navigation

Configure tabs, sections, and pages in your docs.yml file
View as Markdown

The docs.yml file controls the navigation structure of your documentation site. Explore the navigation options below and click through to the Fern documentation for detailed configuration guides.

Quick example

Here’s a minimal example showing navigation structure in docs.yml:

docs.yml
1navigation:
2 - section: Getting started
3 contents:
4 - page: Introduction
5 path: docs/pages/intro.mdx
6 - page: Quickstart
7 path: docs/pages/quickstart.mdx
8 - api: API Reference

For complete navigation options, see the navigation documentation.