1
0
Fork 0
docsearch/adapters/docusaurus-theme-search-algolia
Felipe Bermudez fe4d0c29f3
fix(agentStudio): agents dynamic mode enabled (#2959)
* fix(agentStudio): agents dynamic mode enabled

* fix(askai): use string[] for dynamic agentStudio indices
2026-08-05 16:37:25 -05:00
..
scripts chore: Move to oxlint and oxfmt (#2923) 2026-07-16 14:59:00 -04:00
src fix(agentStudio): agents dynamic mode enabled (#2959) 2026-08-05 16:37:25 -05:00
.gitignore feat(docusaurus-adapter): support docsearch key and adapter docs (#2858) 2026-02-17 17:53:12 +01:00
.npmignore feat(docusaurus-adapter): support docsearch key and adapter docs (#2858) 2026-02-17 17:53:12 +01:00
CHANGELOG.md chore: release v5.0.0-beta.2 (#2950) 2026-08-04 14:39:25 -04:00
package.json chore: release v5.0.0-beta.2 (#2950) 2026-08-04 14:39:25 -04:00
README.md refactor(docusaurus-adapter): rework theme config for v5 and modularize SearchPage (#2904) 2026-07-15 17:24:19 +02:00
tsconfig.client.json chore: Move to oxlint and oxfmt (#2923) 2026-07-16 14:59:00 -04:00
tsconfig.json chore: Move to oxlint and oxfmt (#2923) 2026-07-16 14:59:00 -04:00

@docsearch/docusaurus-adapter

Algolia search component for Docusaurus.

Usage

Prefer configuring the adapter with themeConfig.docsearch:

// docusaurus.config.js
export default {
  // ...
  themeConfig: {
    docsearch: {
      appId: 'APP_ID',
      apiKey: 'SEARCH_API_KEY',
      indices: [{ name: 'INDEX_NAME' }],
      askAi: {
        assistantId: 'ASSISTANT_ID',
      },
      sidePanel: true,
    },
  },
};

Only themeConfig.docsearch is supported.