Search code examples
next.jshideoverlay

I want to hide the error overlay in Nextjs


I am developing market place for solana NFTs by using Next.js.

And I want to hide the error overlay like the following image.

enter image description here

How to do that?


Solution

  • Adding to global.css helped:

    nextjs-portal {
      display: none;
    }
    

    source https://github.com/vercel/next.js/discussions/13387#discussioncomment-5694715