0.2.1 • Published 1 month ago

docusaurus-plugin-search-glean v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

docusarus-plugin-search-glean

A Docusarus plugin to integrate Glean search into your Docusaurus site.

Description

This plugin utilizes Glean's JS SDK to enable both Glean search and AI App chat into your documentation. It is a drop-in replacement for the default Docusaurus search plugin.

Features

Glean Search

Enables you to integrate Glean's search into your Docusaurus site.

Glean Search

Glean Chat (AI App)

Enables you to integrate Glean's AI App chat into your Docusaurus site (requires setting up an AI App in Glean).

Glean Chat

Installation

npm install docusaurus-plugin-search-glean

or

yarn add docusaurus-plugin-search-glean

Usage

Add this plugin to the plugins array in docusaurus.config.js.

module.exports = {
  // ...
  plugins: [require.resolve("docusaurus-plugin-search-glean"), {}],

  // or, if you want to specify options:

  // ...
  plugins: [
    [
      require.resolve("docusaurus-plugin-search-glean"),
      {
        // Options
      },
    ],
  ],
};

Example

module.exports = {
  // ...
  plugins: [
    [
      require.resolve("docusaurus-plugin-search-glean"),
      {
        sdkUrl: "https://app.glean.com/embedded-search-latest.min.js",
        searchOptions: {
          datasourcesFilter: ["github"],
        },
        chatOptions: {
          applicationId: "your-glean-app-id",
        },
        chatPagePath: "chat",
      },
    ],
  ],
};

Options

PropertyTypeDescription
sdkUrlstringURL to the SDK required for the plugin.
searchOptionsPartial<ModalSearchOptions> \| falseOptions for search functionality. Pass false to disable.
chatOptionsPartial<ChatOptions> \| falseOptions for chat functionality. Pass false to disable.
chatPagePathstringPath to the chat page within the application.

For more information on the search and chat options, refer to the Glean documentation.

0.2.1

1 month ago

0.2.0

1 month ago

0.1.5

1 month ago

0.1.4

2 months ago

0.1.3

2 months ago

0.1.2

3 months ago

0.1.0

3 months ago

0.1.1

3 months ago

0.0.10

4 months ago

0.0.11

4 months ago

0.0.12

4 months ago

0.0.13

4 months ago

0.0.14

4 months ago

0.0.9

4 months ago

0.0.8

4 months ago

0.0.5

4 months ago

0.0.4

4 months ago

0.0.7

4 months ago

0.0.6

4 months ago

0.0.3

4 months ago

0.0.2

4 months ago

0.0.1

4 months ago