Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs-site/content/guide/search-ui-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ To get InstantSearch.js to use the Typesense adapter, open `src/app.js` and edit
<template v-slot:JavaScript>

```js
import instantsearch from "instantsearch.js";
const searchClient = algoliasearch('typesense', 'typesense_search_only_api_key');

const search = instantsearch({
Expand All @@ -94,6 +95,7 @@ to this:

```js
import TypesenseInstantSearchAdapter from "typesense-instantsearch-adapter";
import instantsearch from "instantsearch.js";

const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({
server: {
Expand Down