From 79e233d9ce351c3a69b04fc24bc7a9918afa96d4 Mon Sep 17 00:00:00 2001 From: Tomas Fernandez <46322567+TomFern@users.noreply.github.com> Date: Wed, 10 Jul 2024 06:19:41 -0300 Subject: [PATCH] Enable noIndex to prevent Search Index crawlers (#89) --- docs/docusaurus.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 6f0a480..94ef35e 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -8,6 +8,9 @@ import {themes as prismThemes} from 'prism-react-renderer'; /** @type {import('@docusaurus/types').Config} */ const config = { + // disable this setting when the site goes to production to allow Google to index + // https://docusaurus.io/docs/next/api/docusaurus-config#noIndex + noIndex: true, title: 'Semaphore Docs', tagline: 'Intuitive Continuous Integration and Delivery', favicon: 'img/favicon.ico',