Welcome to the beta! Please open a Github issue if you have feature requests or find any issues.
Configuration

#Search

It is possible to add search to a Zudoku powered site. It will appear in the top navigation and persist across all pages.

#Configuration

At this time, only Inkeep is supported.

#Inkeep

To add search to your site you will need to copy some variables from your Inkeep account setting:

  • API Key
  • Integration ID
  • Organization ID

With these you can then configure the search option in Zudoku Configuration:

{
// ...
search: {
type: "inkeep"
apiKey: "<your-api-key>",
integrationId: "<your-integration-id>",
organizationId: "<your-organization-id>",
primaryBrandColor: "#26D6FF",
organizationDisplayName: "Your Organization Name",
}
// ...
}
typescript