Analyze SEO while developing your Next.js websites/apps.
(Only App Router is supported. Support for Pages Router is not a priority.)
-
run
npm i next-seo-devtools -D -
import component and its styles in
app/layout:
import NextSEODevTools from "next-seo-devtools";
import "next-seo-devtools/dist/index.css";- mount the component:
...
<body>
<NextSEODevTools />
...
</body>
...It will automatically not render in a built site.
