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

View File

@@ -8,7 +8,7 @@ Learn more about how you can use this plugin in the [documentaion](https://docs.
```js
{
api_key: STRIPE_API_KEY,
webhook_secret: STRIPE_WEBHOOK_SECRET,
api_key: "STRIPE_API_KEY",
webhook_secret: "STRIPE_WEBHOOK_SECRET",
}
```

View File

@@ -8,8 +8,8 @@ Learn more about how you can use this plugin in the [documentaion](https://docs.
```js
{
space_id: CONTENTFUL_SPACE_ID,
access_token: CONTENTFUL_ACCESS_TOKEN,
environment: CONTENTFUL_ENV,
space_id: "CONTENTFUL_SPACE_ID",
access_token: "CONTENTFUL_ACCESS_TOKEN",
environment: "CONTENTFUL_ENV",
}
```

View File

@@ -9,10 +9,10 @@ Learn more about how you can use this plugin in the [documentaion](https://docs.
```js
{
config: {
host: [your meilisearch host],
host: "[your meilisearch host]",
},
settings: {
[indexName]: [meilisearch settings passed to meilisearch's `updateSettings()` method]
"[indexName]": "[meilisearch settings passed to meilisearch's `updateSettings()` method]"
// example
products: {
searchableAttributes: ["title", "description", "variant_sku", "type_value"],