rsnext/errors/no-duplicate-head.mdx

42 lines
881 B
Text
Raw Normal View History

---
title: No Duplicate Head
---
2021-07-15 20:04:17 +02:00
> Prevent duplicate usage of `<Head>` in `pages/_document.js`.
## Why This Error Occurred
2021-07-15 20:04:17 +02:00
More than a single instance of the `<Head />` component was used in a single custom document. This can cause unexpected behavior in your application.
## Possible Ways to Fix It
2021-07-15 20:04:17 +02:00
Only use a single `<Head />` component in your custom document in `pages/_document.js`.
```jsx filename="pages/_document.js"
2021-07-15 20:04:17 +02:00
import Document, { Html, Head, Main, NextScript } from 'next/document'
class MyDocument extends Document {
static async getInitialProps(ctx) {
//...
}
render() {
return (
<Html>
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
)
}
}
export default MyDocument
```
## Useful Links
2021-07-15 20:04:17 +02:00
- [Custom Document](/docs/pages/building-your-application/routing/custom-document)