From dbee0b2e4485e42303f5ad4ec8261672d1f01055 Mon Sep 17 00:00:00 2001 From: Karl Cardenas Date: Tue, 3 Oct 2023 09:03:36 -0700 Subject: [PATCH] chore: updated privacy settings experience (#1635) --- docusaurus.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docusaurus.config.js b/docusaurus.config.js index 08a8d27861..e2f0721710 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -112,6 +112,14 @@ const config = { ...args, docs: filteredDocs, }); + // This is an override to the default sidebar items generator. + // This injects the "Privacy Settings" link at the bottom of the sidebar. + sidebarItems.push( + { + type: 'html', + value: 'Privacy Settings', + }, + ); return sidebarItems; }, editUrl: "https://github.com/spectrocloud/librarium/blob/master",