CodePudding user response:
Most of the editors need to run on browser, try to import Editor component on client side only. Documentaion
In your page file:
import dynamic from 'next/dynamic'
const Editor= dynamic(
() => import('../components/Editor'), //Editor component path
{ ssr: false }
)