Install the Pages extension

Restricted ReleaseAlpha

Install and configure the Pages extension by following this guide.

Install the Pages extension

npm install @tiptap-pro/extension-pages@alpha

Integrating the Pages extension

After installing the pages extension, register it in your editor by adding the Pages extension to your editor’s extensions array.

import { Pages } from '@tiptap-pro/extension-pages'

const editor = new Editor({
  ...
  extensions: [
    ...,
    Pages,
  ]
})

Depending on your use case, you may need to configure a collaborative provider or additional options. Refer to the full documentation for advanced configuration.