Fumadocs

Next.js

Setup Fumadocs on Next.js.

Prerequisite

Before continuing, make sure you have configured:

  • Next.js 15.
  • Tailwind CSS 4.

We will use Fumadocs MDX as a content source, you can configure it first:

Installation

npm i fumadocs-mdx @types/mdx

Create the configuration file:

source.config.ts
import { defineDocs, defineConfig } from 'fumadocs-mdx/config';

export const docs = defineDocs({
  dir: 'content/docs',
});

export default defineConfig();

Add the plugin to Next.js config:

next.config.mjs
import { createMDX } from 'fumadocs-mdx/next';

/** @type {import('next').NextConfig} */
const config = {
  reactStrictMode: true,
};

const withMDX = createMDX({
  // customise the config file path
  // configPath: "source.config.ts"
});

export default withMDX(config);

ESM Only

The Next.js config must be a .mjs file since Fumadocs is ESM-only.

Setup an import alias (optional):

tsconfig.json
{
  "compilerOptions": {
    "paths": {
      "@/.source": [".source"]
    }
  }
}

Integrate with Fumadocs

You can create a lib/source.ts file and obtain Fumadocs source from the docs collection output.

lib/source.ts
import { docs } from '@/.source';
import { loader } from 'fumadocs-core/source';

export const source = loader({
  baseUrl: '/docs',
  source: docs.toFumadocsSource(),
});

The .source folder will be generated when you run next dev or next build.

Done

You can now write content in content/docs folder.

Good to Know

Fumadocs also supports other content sources, including Content Collections and headless CMS.

Getting Started

npm i fumadocs-ui fumadocs-core

Root Layout

Wrap the entire application inside Root Provider, and add required styles to body.

app/layout.tsx
import { RootProvider } from 'fumadocs-ui/provider/next';
import type { ReactNode } from 'react';

export default function Layout({ children }: { children: ReactNode }) {
  return (
    <html lang="en" suppressHydrationWarning>
      <body
        // required styles
        className="flex flex-col min-h-screen"
      >
        <RootProvider>{children}</RootProvider>
      </body>
    </html>
  );
}

Styles

Add the following Tailwind CSS styles to global.css.

global.css
@import 'tailwindcss';
@import 'fumadocs-ui/css/neutral.css';
@import 'fumadocs-ui/css/preset.css';

It doesn't come with a default font, you may choose one from next/font.

Routes

Create a lib/layout.shared.tsx file to put the shared options for our layouts.

lib/layout.shared.tsx
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared';

export function baseOptions(): BaseLayoutProps {
  return {
    nav: {
      title: 'My App',
    },
  };
}

Create the following files & routes:

import defaultMdxComponents from 'fumadocs-ui/mdx';
import type { MDXComponents } from 'mdx/types';

export function getMDXComponents(components?: MDXComponents): MDXComponents {
  return {
    ...defaultMdxComponents,
    ...components,
  };
}

The search is powered by Orama, learn more about Document Search.

Finish

You can start the dev server and create MDX files.

content/docs/index.mdx
---
title: Hello World
---

## Introduction

I love Anime.

How is this guide?

Last updated on