https://github.com/inambe/next-seo-devtools
SEO DevTools for Next.js
https://github.com/inambe/next-seo-devtools
Last synced: about 1 year ago
JSON representation
SEO DevTools for Next.js
- Host: GitHub
- URL: https://github.com/inambe/next-seo-devtools
- Owner: Inambe
- License: mit
- Created: 2023-11-03T20:58:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-05T20:55:40.000Z (over 2 years ago)
- Last Synced: 2025-03-02T00:49:01.677Z (over 1 year ago)
- Language: TypeScript
- Size: 567 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.)

# Getting started
1. run `npm i next-seo-devtools -D`
2. import component and its styles in `app/layout`:
```js
import NextSEODevTools from "next-seo-devtools";
import "next-seo-devtools/dist/index.css";
```
3. mount the component:
```js
...
...
...
```
It will automatically not render in a built site.