Skip to content

Commit 6fd8bf7

Browse files
authored
fix(gatsby-source-drupal): add placeholder style name plugin option to the options schema (#35644)
add placeholder style name plugin option to the options schema
1 parent 1731cf1 commit 6fd8bf7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/gatsby-source-drupal/src/gatsby-node.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -847,6 +847,9 @@ exports.pluginOptionsSchema = ({ Joi }) =>
847847
translatableEntities: Joi.array().items(Joi.string()).required(),
848848
nonTranslatableEntities: Joi.array().items(Joi.string()).required(),
849849
}),
850+
placeholderStyleName: Joi.string().description(
851+
`The machine name of the Gatsby Image CDN placeholder style in Drupal. The default is "placeholder".`
852+
),
850853
})
851854

852855
exports.onCreateDevServer = async ({ app }) => {

0 commit comments

Comments
 (0)