not-found.js
API reference for the not-found.js file.
The not-found file is used to render UI when the notFound
function is thrown within a route segment. Along with serving a custom UI, Next.js will return a 200
HTTP status code for streamed responses, and 404
for non-streamed responses.
Reference
Props
not-found.js
components do not accept any props.
Good to know: In addition to catching expected notFound()
errors, the root app/not-found.js
file also handles any unmatched URLs for your whole application. This means users that visit a URL that is not handled by your app will be shown the UI exported by the app/not-found.js
file.
Examples
Data Fetching
By default, not-found
is a Server Component. You can mark it as async
to fetch and display data:
If you need to use Client Component hooks like usePathname
to display content based on the path, you must fetch data on the client-side instead.
Version History
Version | Changes |
---|---|
v13.3.0 | Root app/not-found handles global unmatched URLs. |
v13.0.0 | not-found introduced. |