Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-transformer-kontent

Converts assets from Kentico Kontent to nodes that can be consumed by gatsby-image.

Install

npm install --save @rshackleton/gatsby-transformer-kontent
yarn add @rshackleton/gatsby-transformer-kontent

How to use

Add the plugin to your gatsby-config.js:

module.exports = {
  plugins: [
    {
      resolve: `@rshackleton/gatsby-transformer-kontent`,
      options: {
        // See "Options" below.
      },
    },
  ],
};

Options

The plugin currently supports a single option to create local File nodes that can be further transformed by gatsby-transformer-sharp.

module.exports = {
  plugins: [
    {
      resolve: `@rshackleton/gatsby-transformer-kontent`,
      options: {
        local: true,
      },
    },
  ],
};
© 2023 Gatsby, Inc.