No Script Component in Head
Source URL: https://nextjs.org/docs/messages/no-script-component-in-head
No Script Component in Head
Section titled “No Script Component in Head”Prevent usage of
next/scriptinnext/headcomponent.
Why This Error Occurred
Section titled “Why This Error Occurred”The next/script component should not be used in a next/head component.
Possible Ways to Fix It
Section titled “Possible Ways to Fix It”Move the <Script /> component outside of <Head> instead.
Before
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
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" /> </> )}