Community Plugin
View plugin on GitHubgatsby-transformer-kontent
Converts assets from Kentico Kontent to nodes that can be consumed by gatsby-image.
Install
npm install --save @rshackleton/gatsby-transformer-kontentyarn add @rshackleton/gatsby-transformer-kontentHow 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,
},
},
],
};