From e8a658ba6de16af58286a2bf9badf71abae2ece4 Mon Sep 17 00:00:00 2001 From: Ludger Paehler Date: Tue, 12 May 2026 05:45:06 -0700 Subject: [PATCH] Add Algolia DocSearch integration to docs Wire up the Algolia search bar via themeConfig.algolia now that the index has been crawled. Enables contextual search and a dedicated /search page out of the box via the preset-classic bundled theme. Co-Authored-By: Claude Sonnet 4.6 --- docs/docusaurus.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts index 71a08bf..db87508 100644 --- a/docs/docusaurus.config.ts +++ b/docs/docusaurus.config.ts @@ -150,6 +150,13 @@ const config: Config = { ], copyright: `Copyright © ${new Date().getFullYear()} HydroGym Project.`, }, + algolia: { + appId: 'KLP3S9F9ZZ', + apiKey: 'f1924b74902281f67c30b820e76a0ead', + indexName: 'HydroGym', + contextualSearch: true, + searchPagePath: 'search', + }, prism: { theme: prismThemes.github, darkTheme: prismThemes.dracula,