Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 788 Bytes

no-script-in-document.md

File metadata and controls

29 lines (20 loc) · 788 Bytes

No Script in Document

Prevent usage of next/script in pages/_document.js.

Why This Error Occurred

You should not use the next/script component in pages/_document.js. That's because the pages/_document.js page only runs on the server and next/script has client-side functionality to ensure loading order.

Possible Ways to Fix It

If you want a global script, use next/script in pages/_app.js instead.

import Script from 'next/script'

function MyApp({ Component, pageProps }) {
  return (
    <>
      <Script src="/my-script.js" />
      <Component {...pageProps} />
    </>
  )
}

export default MyApp