mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
53 lines
942 B
Plaintext
53 lines
942 B
Plaintext
---
|
|
title: No Script Component in Head
|
|
---
|
|
|
|
> Prevent usage of `next/script` in `next/head` component.
|
|
|
|
## Why This Error Occurred
|
|
|
|
The `next/script` component should not be used in a `next/head` component.
|
|
|
|
## Possible Ways to Fix It
|
|
|
|
Move the `<Script />` component outside of `<Head>` instead.
|
|
|
|
**Before**
|
|
|
|
```jsx filename="pages/index.js"
|
|
import Script from 'next/script'
|
|
import Head from 'next/head'
|
|
|
|
export default function Index() {
|
|
return (
|
|
<Head>
|
|
<title>Next.js</title>
|
|
<Script src="/my-script.js" />
|
|
</Head>
|
|
)
|
|
}
|
|
```
|
|
|
|
**After**
|
|
|
|
```jsx filename="pages/index.js"
|
|
import Script from 'next/script'
|
|
import Head from 'next/head'
|
|
|
|
export default function Index() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Next.js</title>
|
|
</Head>
|
|
<Script src="/my-script.js" />
|
|
</>
|
|
)
|
|
}
|
|
```
|
|
|
|
## Useful Links
|
|
|
|
- [next/head](/docs/pages/api-reference/components/head)
|
|
- [next/script](/docs/pages/guides/scripts)
|