Next.js App Router 设置统一 404 页面
Next.js About 260 words404 页面
src/app
目录下新建not-found.tsx
文件。
名称必须是not-found
,后缀可以是jsx
、tsx
等。
代码
not-found.tsx
文件内容
export default function NotFound() {
return (
<>
not found
</>
);
}
文档
https://nextjs.org/docs/app/getting-started/project-structure#component-hierarchy
Views: 20 · Posted: 2025-10-16
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb/LiteNote扫描下方二维码关注公众号和小程序↓↓↓

Loading...