From a99f4c8c3e9bd0512c7a2eeafc97d60426d85daf Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Tue, 1 Dec 2020 11:40:01 -0800 Subject: [PATCH] fix(gatsby-recipes): add isLocal to schema for GatsbyPlugin --- packages/gatsby-recipes/src/providers/gatsby/plugin.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/gatsby-recipes/src/providers/gatsby/plugin.js b/packages/gatsby-recipes/src/providers/gatsby/plugin.js index 555faeec67545..68b0f68a67bc7 100644 --- a/packages/gatsby-recipes/src/providers/gatsby/plugin.js +++ b/packages/gatsby-recipes/src/providers/gatsby/plugin.js @@ -524,6 +524,7 @@ const schema = { name: Joi.string(), description: Joi.string().optional().allow(null).allow(``), options: Joi.object(), + isLocal: Joi.boolean(), readme: Joi.string().optional().allow(null).allow(``), shadowableFiles: Joi.array().items(Joi.string()), shadowedFiles: Joi.array().items(Joi.string()),