ThemesDocs ThemeConfiguration

Configuration

To configure the theme, edit or create the theme.config.js file in the root directory. The file looks something like this:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  projectLink: 'https://gitlab.com/librewolf-community/browser',
  titleSuffix: ' – Nextra',
  footerText: `MIT ${new Date().getFullYear()} © Nextra.`
  // ... other theme options
}

The URL that the button in the top right will point to.

Type: string

Default: https://github.com/shuding/nextra

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  projectLink: 'https://gitlab.com/librewolf-community/browser'
}

projectLinkIcon

Changes the icon that is shown in the top right.

Type: ReactNode | React.FC<{ locale: string }>

Default: GitHub icon

Example:

theme.config.js
import Gitlab from '@geist-ui/react-icons/gitlab'
 
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  projectLinkIcon: ({ locale }) => <Gitlab />
}

docsRepositoryBase

The base URL of the GitHub repository the docs are located in. This will be used for the Edit this Page on GitHub button.

Type: string

Default: https://github.com/shuding/nextra

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  docsRepositoryBase: 'https://github.com/shuding/nextra'
}

titleSuffix

Suffix that will be added to page titles in the URL bar.

Type: string

Default: – Nextra

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  titleSuffix: '– Nextra'
}

Specifies if arrows are being shown at the bottom of a page showing the next and previous page, like the ones at the bottom of this page.

Type: boolean

Default: true

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  nextLinks: true,
  prevLinks: true
}

Specifies if a search box should be shown in the top right.

Type: boolean

Default: true

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  search: true
}

searchPlaceholder

Specifies if a search box should be shown in the top right.

Type: string | ((props: { locale: string }) => string)

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  searchPlaceholder: ({ locale }) => {
    if (locale === 'zh-CN') return '搜索文档...'
    return 'Search documentation...'
  }
}

customSearch

A custom component to display instead of the search bar in the top right, for example Algolia.

Type: ReactNode

Example:

theme.config.js
import Search from 'your-search'
 
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  customSearch: <Search />
}

darkMode

Specifies if the user can select a dark mode.

Type: boolean

Default: true

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  darkMode: true
}

defaultMenuCollapseLevel

Specifies the folder level at which the menu on the left is collapsed by default.

Type: number

Default: 2

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  defaultMenuCollapseLevel: 2
}

Specifies if the footer should be shown.

Type: boolean

Default: true

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  footer: true
}

footerText

The text that is shown on the left of the footer.

Type: ReactNode | React.FC<PropsWithChildren<{ locale: string }>>

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  footerText: ({ locale }) => <>MIT ${new Date().getFullYear()} © Nextra.</>
}

The components that should be shown on the link that leads to the editable page on the repository.

Type: ReactNode | React.FC<PropsWithChildren<{ locale: string }>>

Default: Edit this page

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  footerEditLink: ({ locale }) => <>Edit this page on GitHub</>
}

The components that should be shown on the link that leads to the issues or discussions of the repository.

Type: ReactNode | React.FC<PropsWithChildren<{ locale: string }>>

Default:

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  feedbackLink: ({ locale }) => <>Question? Give us feedback →</>
}

feedbackLabels

Label used for create issue or discussion.

Type: string

Default:

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  feedbackLabels: 'feedbacks'
}

The logo in the top left.

Type: ReactNode | React.FC<PropsWithChildren<{ locale: string }>>

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  logo: ({ locale }) => (
    <>
      <span className="mr-2 hidden font-extrabold md:inline">AbyssalDetention</span>
      <span className="hidden font-normal text-gray-600 md:inline">
        Wiki
      </span>
    </>
  )
}

Enable automaticaly linking the logo to root, or provide a custom url.

Type: string | boolean

Default: true (links to / by default)

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  logoLink: '/about'
}

Or to disable the logo link:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  logoLink: false
}

The head that should be inserted into the html document.

Type: ReactNode | React.FC<PropsWithChildren<{ locale: string; config: DocsThemeConfig; title: string; meta: Record<string, any> }>>

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  head: (
    <>
      <meta name="msapplication-TileColor" content="#fff" />
      <meta httpEquiv="Content-Language" content="en" />
      <meta name="description" content="AbyssalDetention: official wiki" />
      <meta name="twitter:card" content="summary_large_image" />
      <meta name="twitter:site" content="@shuding_" />
      <meta property="og:title" content="AbyssalDetention: official wiki" />
      <meta property="og:description" content="AbyssalDetention: official wiki" />
      <meta name="apple-mobile-web-app-title" content="AbyssalDetention" />
    </>
  )
}

direction

The direction of the text on the page

Type: 'ltr' | 'rtl'

Default: 'ltr'

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  direction: 'ltr'
}

floatTOC

Specifies if the table of conents of a page (the headings) should be displayed floating on the right instead of being integrated in the menu on the left.

Type: boolean

Default: false

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  floatTOC: false
}

The URL that the chat button in the top right will point to.

Type: string

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  projectChatLink: 'https://discord.gg/hEM84NMkRv'
}

projectChatLinkIcon

The icon component that is used as the chat button

Type: ReactNode

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  projectChatLinkIcon: <Discord />
}

The banner content that will display at top of the page.

Type: ReactNode | React.FC<PropsWithChildren<{ locale: string }>>

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  banner: ({ locale }) => 'Nextra 2'
}

bannerKey

The key that is used to control the display of banner in localStorage.

Type: string

Default: 'nextra-banner'

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  bannerKey: 'Nextra-banner'
}

gitTimestamp

The component that is used to display timestamp of the last commit of current page.

Type: string | React.FC<PropsWithChildren<{ locale: string; timestamp: Date }>>

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  gitTimestamp: 'Last updated on'
}

tocExtraContent

The extra content that is displayed under the table of contents.

Type: ReactNode | React.FC<PropsWithChildren<unknown>>

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  tocExtraContent: () => {
    return <img src="http://placekitten.com/g/300/200" />
  }
}

i18n

The internationalization (i18n) config. See more here.

faviconGlyph

A glyph that should be used as a favicon.

Type: char

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  faviconGlyph: '🐱'
}
🚫
This is an unstable and experimental feature and not recommended for general use.

search

Enable Nextra built-in search

Type: boolean | { codeblocks: boolean }

Example:

next.config.mjs
import nextra from 'nextra'
 
const withNextra = nextra({
  theme: 'nextra-theme-blog',
  themeConfig: './theme.config.js',
  search: {
    codeblocks: false
  }
})
export default withNextra()
🚫
This is an unstable and experimental feature and not recommended for general use.

searchResultEmpty

Empty component for search result.

Type: boolean | { codeblocks: boolean }

Example:

theme.config.js
/**
 * @type {import('nextra-theme-docs').DocsThemeConfig}
 */
export default {
  searchResultEmpty({ locale }) {
    if (locale === 'zh-CN') return <span> 未查找到结果 </span>
    return <span> No results found. </span>
  }
}
🚫
This is an unstable and experimental feature and not recommended for general use.