small fixes

This commit is contained in:
Shahed Nasser
2022-05-20 11:44:20 +03:00
parent be3ad001ee
commit b4f0771202
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ Learn more about how you can use this plugin in the [documentaion](https://docs.
```js ```js
{ {
api_key: STRIPE_API_KEY, api_key: "STRIPE_API_KEY",
webhook_secret: STRIPE_WEBHOOK_SECRET, webhook_secret: "STRIPE_WEBHOOK_SECRET",
} }
``` ```
+3 -3
View File
@@ -8,8 +8,8 @@ Learn more about how you can use this plugin in the [documentaion](https://docs.
```js ```js
{ {
space_id: CONTENTFUL_SPACE_ID, space_id: "CONTENTFUL_SPACE_ID",
access_token: CONTENTFUL_ACCESS_TOKEN, access_token: "CONTENTFUL_ACCESS_TOKEN",
environment: CONTENTFUL_ENV, environment: "CONTENTFUL_ENV",
} }
``` ```
+2 -2
View File
@@ -9,10 +9,10 @@ Learn more about how you can use this plugin in the [documentaion](https://docs.
```js ```js
{ {
config: { config: {
host: [your meilisearch host], host: "[your meilisearch host]",
}, },
settings: { settings: {
[indexName]: [meilisearch settings passed to meilisearch's `updateSettings()` method] "[indexName]": "[meilisearch settings passed to meilisearch's `updateSettings()` method]"
// example // example
products: { products: {
searchableAttributes: ["title", "description", "variant_sku", "type_value"], searchableAttributes: ["title", "description", "variant_sku", "type_value"],