Head 標籤中不應有 Script 組件
防止在
next/head
組件中使用next/script
。
為何發生此錯誤
`next/script` 組件不應在 `next/head` 組件中使用。
可能的解決方法
請將 <Script />
組件移到 <Head>
之外。
之前
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>
)
}
之後
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" />
</>
)
}
實用連結
這有幫助嗎?