0.2.1 • Published 8 months ago

@curatorjs/bridge v0.2.1

Weekly downloads
-
License
-
Repository
-
Last release
8 months ago

Curator Logo


Curator Bridge connects your Next.js website with Curator Studio providing an integrated editing experience.


Documentation

Documentation is available here.

Features

  • Preview drafts
  • Edit-in-Studio button
  • Integrated editing (in development)
  • Inline editing (in development)

Quick Start

Add the Bridge package to your Curator Studio project:

npm install @curatorjs/bridge

Add the plugin to the list of Curator plugins:

// curator.config.ts
import { bridgePlugin } from "@curatorjs/bridge";

const config = {
  // Other config...
  plugins: [
    // Other plugins...
    bridgePlugin({
      /*
       * Domain of your website.
       */
      domain: "www.example.com",
    }),
  ],
};