Co-authored-by: Philip Korsholm <88927411+pKorsholm@users.noreply.github.com> Co-authored-by: Zakaria El Asri <33696020+zakariaelas@users.noreply.github.com> Co-authored-by: Kasper Fabricius Kristensen <45367945+kasperkristensen@users.noreply.github.com> Co-authored-by: Philip Korsholm <philip.korsholm@hotmail.com> Co-authored-by: Sebastian Rindom <seb@medusa-commerce.com>
21 lines
469 B
Markdown
21 lines
469 B
Markdown
# medusa-plugin-algolia
|
|
|
|
algolia Plugin for Medusa to search for products.
|
|
|
|
## Plugin Options
|
|
|
|
```
|
|
{
|
|
application_id: "someId",
|
|
admin_api_key: "someApiKey",
|
|
settings: {
|
|
[indexName]: [algolia settings passed to algolia's `updateSettings()` method]
|
|
// example
|
|
products: {
|
|
searchableAttributes: ["title", "description", "variant_sku", "type_value"],
|
|
attributesToRetrieve: ["title", "description", "variant_sku", "type_value"],
|
|
}
|
|
}
|
|
}
|
|
```
|