1
0
Fork 0
docsearch/adapters/docusaurus-theme-search-algolia/README.md
Dylan Tientcheu 23f3e6b657
refactor(docusaurus-adapter): rework theme config for v5 and modularize SearchPage (#2904)
Co-authored-by: Paul Jankowski <8BitTitan@gmail.com>
2026-07-15 17:24:19 +02:00

482 B

@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.