Absolute imports with @ prefix

Import custom components using the @/ prefix for absolute paths from your fern folder root. This is especially useful for nested MDX files where relative paths like ../../../components/Banner would be cumbersome.

1import { CustomCard } from "@/components/CustomCard"

Relative imports are still supported.

Learn more about custom React components.

Title source for folder navigation

By default, folder navigation derives page titles from filenames. You can now set title-source: frontmatter to use the title field from each file’s frontmatter instead.

docs.yml
1navigation:
2 - folder: ./pages/guides
3 title: Guides
4 title-source: frontmatter

Files without a frontmatter title fall back to the filename-derived value.

Learn more about folder navigation.