Skip to content
On this page

Next.js and BlockNote

BlockNote is a component that should only be rendered client-side (and not on the server). If you're using Next.js, you need to make sure that Next.js does not try to render BlockNote as a server-side component.

To do this, first see if you're using the modern App router or the classic Pages router.

(If the component you want to add BlockNote to is in an app directory, you're likely to be using the App router. If you're working in a pages directory, you're using the pages router).

App router

Make sure to use BlockNote in a Client Component. You can do this by creating a separate file for your component, and starting that with "use client"; directive.

typescript
"use client"; // this registers <Editor> as a Client Component
import { BlockNoteEditor } from "@blocknote/core";
import { BlockNoteView, useBlockNote } from "@blocknote/react";
import "@blocknote/core/style.css";

// Our <Editor> component that we can now use
export default Editor() {
  // Creates a new editor instance.
  const editor: BlockNoteEditor | null = useBlockNote({});

  // Renders the editor instance using a React component.
  return <BlockNoteView editor={editor} />;
}

Pages router

If you're using the classic Pages router (note that Next.js recommends upgrading to the App router) and are running into issues embedding BlockNote directly, you can use Dynamic Imports to make sure BlockNote is only imported on the client-side.

First, create an isolated <Editor> component using the snipped above.

Then, you can import this using next/dynamic in your page:

typescript
import dynamic from "next/dynamic";

const Editor = dynamic(() => import("./editor"), { ssr: false });

function App() {
  return (
    <div>
      <Editor />
    </div>
  );
}

This should resolve any issues you might run into when embedding BlockNote in your Next.js React app!