From e2f3c4e12d7bc0f4fdeff3059de5a8afae6da607 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Fri, 16 Oct 2020 17:44:13 +0200 Subject: [PATCH] Fix robots [ci skip] --- website/gatsby-config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/website/gatsby-config.js b/website/gatsby-config.js index c4047e9ac..17abb80ec 100644 --- a/website/gatsby-config.js +++ b/website/gatsby-config.js @@ -187,7 +187,10 @@ module.exports = { policy: [{ userAgent: '*', allow: '/' }], }, development: { - policy: [{ userAgent: '*', disallow: ['/'] }], + policy: [ + { userAgent: '*', disallow: ['/'] }, + { userAgent: 'Twitterbot', allow: '/' }, + ], }, }, },