Skip to Content
SWR 2.0 is out! Read more →
Documentation404/500 Custom Error Pages

404 / 500 pages

Nextra support custom 404.mdx/500.mdx pages.

404

To add /404 page import NotFoundPage:

pages/404.mdx
import { NotFoundPage } from 'nextra-theme-docs'
 
# 404 - This page could not be found
 
<NotFoundPage />

Click to try /404 page.

Customize Theme Config Options

Also, you can customize following options:

// ...
notFoundLink?: ReactNode | FC
notFoundLabels?: string

Customize Layout

_meta.js
export default {
  404: {
    type: 'page'
  },
  500: {
    type: 'page',
    theme: {
      layout: 'full'
    }
  }
}
Last updated on