404love-next
npx skills add https://github.com/dariorapisardi/404love --skill 404love-next
Agent 安装分布
Skill 文档
404love Next.js App Router
Integrate the 404love 404 experience in Next.js App Router projects using the @404love/next package.
Requirements
- Use Next.js 13.4+ with App Router.
- Use React 18+.
Quick start
- Install the package with the repo’s package manager.
- Create
app/not-found.tsxand exportcreateNotFoundPage(). - Run dev server and visit a non-existing route.
Install
Prefer the package manager used by the project (lockfile). Default to npm.
npm install @404love/next
Add the not-found page
Create app/not-found.tsx:
import { createNotFoundPage } from "@404love/next"
export default createNotFoundPage()
This renders a full-page iframe pointing to https://404found.love/frame, plus an optional top-level back link outside the iframe.
Customize
Pass options to createNotFoundPage when customizing the iframe or back link.
Use the full option list and example in skills/404love-next/references/options.md.
import { createNotFoundPage } from "@404love/next"
export default createNotFoundPage({
includeBackLink: true,
backLinkLabel: "Back to site",
query: { source: "app-router" },
iframeTitle: "404 Love Found",
syncFrameBackground: true,
})
Back navigation
The package passes a referer query param using server headers and the client document.referrer, then renders a top-level back link outside the iframe. The link navigates the host history (or detected referrer) so the user exits the iframe.
Privacy
The SDK does not set cookies or track users. The only data passed is an optional referer URL query param for back navigation.
Troubleshooting
- Ensure the file is
app/not-found.tsx(App Router only). - Remove any legacy Pages Router
pages/404.tsxorpages/404.jsthat might override routing. - If the iframe background clashes with the host, set
syncFrameBackground: falseor customizecontainerStyle/iframeStyle.