Configuration of gatsby-source-plone

This Plugin provide some options so that you can add more feature to your website.

Plugin options

KeyDescription
baseURlPoints to your Plone CMS Url.
tokenYour Plone CMS authentication token. Helps you to get private scope data.
websocketUpdatesYou can set websocketUpdates as true and false. If you pass true then it will provide you instant updates to your website when you make any change in data set on Plone CMS.

How to use

  plugins: [
    {
      resolve: 'gatsby-source-plone',
      options: {
        baseUrl: 'http://localhost:8080/Plone/',
        token: process.env.TOKEN,
        websocketUpdates: true || false,
      },
    },
  ]