From d74fa9aebb43f235007c1342b6314863d2a6a634 Mon Sep 17 00:00:00 2001 From: Chavez Harris Date: Tue, 25 Nov 2025 14:39:41 -0400 Subject: [PATCH 1/2] To revert: Link to my test Algolia account. --- website/docusaurus.config.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index fa9fdd51..51ce7148 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -1,7 +1,6 @@ import type { Config } from '@docusaurus/types'; import { themes as prismThemes } from 'prism-react-renderer'; import type * as Preset from '@docusaurus/preset-classic'; -import { relative } from 'path'; const config: Config = { title: 'ConfigCat Docs', @@ -403,8 +402,8 @@ const config: Config = { }, algolia: { // The search crawling repo can be found here: https://github.com/configcat/docsearch - appId: '0MLXBNIK0Q', - apiKey: '6484bd6c163502bacf229cb8d22024ab', + appId: '0G4A1N5W4D', // Revert to 0MLXBNIK0Q before merging. + apiKey: '6ef464aa13ff206475397b835c52b646', // Revert to 6484bd6c163502bacf229cb8d22024ab before merging. indexName: 'configcat', contextualSearch: true, searchPagePath: 'search', From 108aa5f9a8a2883ee0dfd276a5a8f7eb7eb063b6 Mon Sep 17 00:00:00 2001 From: Chavez Harris Date: Wed, 10 Dec 2025 12:50:45 -0400 Subject: [PATCH 2/2] Customize Algolia's default "See all results" text via CSS --- website/src/css/custom.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/website/src/css/custom.scss b/website/src/css/custom.scss index c34c71a0..1d9ad125 100644 --- a/website/src/css/custom.scss +++ b/website/src/css/custom.scss @@ -122,3 +122,16 @@ ul.feature-list { } } } + +/* Customize Algolia's default "See all results" text */ + +/* Hide the original text */ +.DocSearch-HitsFooter a { + font-size: 0 !important; +} + +/* Customize the text */ +.DocSearch-HitsFooter a::after { + content: "See all results"; + font-size: 14px; +}