From 452afa9eae6e4a999fd118c8a81881bbe2eacec7 Mon Sep 17 00:00:00 2001 From: Arthur Denner Date: Fri, 24 Apr 2020 16:18:58 +0200 Subject: [PATCH] fix(minimal-blog): remove falsy values from plugins list (#368) --- themes/gatsby-theme-minimal-blog/gatsby-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/gatsby-theme-minimal-blog/gatsby-config.js b/themes/gatsby-theme-minimal-blog/gatsby-config.js index 2f0a3e1fa..a896ce02b 100644 --- a/themes/gatsby-theme-minimal-blog/gatsby-config.js +++ b/themes/gatsby-theme-minimal-blog/gatsby-config.js @@ -27,6 +27,6 @@ module.exports = (options) => { `gatsby-plugin-typescript`, `gatsby-plugin-catch-links`, `gatsby-plugin-theme-ui`, - ], + ].filter(Boolean), } }