Skip to content

Inambe/next-seo-devtools

Repository files navigation

Next SEO DevTools

Analyze SEO while developing your Next.js websites/apps.

(Only App Router is supported. Support for Pages Router is not a priority.)

Screenshot

Getting started

  1. run npm i next-seo-devtools -D

  2. import component and its styles in app/layout:

import NextSEODevTools from "next-seo-devtools";
import "next-seo-devtools/dist/index.css";
  1. mount the component:
    ...
    <body>
        <NextSEODevTools />
        ...
    </body>
    ...

It will automatically not render in a built site.