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 />
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'
}
}
}