rsnext/errors/next-head-count-missing.md
stefanprobst 279ae19c7e
docs: update links to docs site (#14305)
this updates some links to the docs site to their new location
2020-06-18 09:54:07 +00:00

11 lines
461 B
Markdown

# `next-head-count` is missing
#### Why This Error Occurred
You have a custom `pages/_document.js` that doesn't have the components required for Next.js to render correctly.
#### Possible Ways to Fix It
Ensure that your `_document.js` is importing and rendering all of the [required components](https://nextjs.org/docs/advanced-features/custom-document).
In this case you are most likely not rendering the `<Head>` component imported from `next/document`.