@graphcommerce/docs 9.0.0-canary.73 → 9.0.0-canary.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/framework/config.md +0 -26
- package/magento/algolia.md +6 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/framework/config.md
CHANGED
|
@@ -85,22 +85,6 @@ Below is a list of all possible configurations that can be set by GraphCommerce.
|
|
|
85
85
|
|
|
86
86
|
### GraphCommerceConfig
|
|
87
87
|
|
|
88
|
-
#### algoliaApplicationId: string (required)
|
|
89
|
-
|
|
90
|
-
Configure your Algolia application ID.
|
|
91
|
-
|
|
92
|
-
Stores > Configuration > Algolia Search > Credentials and Basic Setup > Application ID
|
|
93
|
-
|
|
94
|
-
#### algoliaIndexNamePrefix: string (required)
|
|
95
|
-
|
|
96
|
-
Stores > Configuration > Algolia Search > Credentials and Basic Setup > Index name prefix
|
|
97
|
-
|
|
98
|
-
#### algoliaSearchOnlyApiKey: string (required)
|
|
99
|
-
|
|
100
|
-
Configure your Algolia Search Only API Key.
|
|
101
|
-
|
|
102
|
-
Stores > Configuration > Algolia Search > Credentials and Basic Setup > Search-only (public) API key
|
|
103
|
-
|
|
104
88
|
#### canonicalBaseUrl: string (required)
|
|
105
89
|
|
|
106
90
|
The canonical base URL is used for SEO purposes.
|
|
@@ -135,12 +119,6 @@ Values: 245, 246, 247 for Magento 2.4.5, 2.4.6, 2.4.7 respectively.
|
|
|
135
119
|
|
|
136
120
|
All storefront configuration for the project
|
|
137
121
|
|
|
138
|
-
#### algoliaCatalogEnabled: boolean
|
|
139
|
-
|
|
140
|
-
By default the catalog will not use algolia. Set this to true to enable Algolia for the catalog.
|
|
141
|
-
|
|
142
|
-
#### algoliaCustomerGroupPricingEnabled: boolean
|
|
143
|
-
|
|
144
122
|
#### breadcrumbs: boolean = `false`
|
|
145
123
|
|
|
146
124
|
Configuration for the SidebarGallery component
|
|
@@ -409,10 +387,6 @@ Examples:
|
|
|
409
387
|
- en-us
|
|
410
388
|
- b2b-us
|
|
411
389
|
|
|
412
|
-
#### algoliaIndexNamePrefix: string
|
|
413
|
-
|
|
414
|
-
Stores > Configuration > Algolia Search > Credentials and Basic Setup > Index name prefix
|
|
415
|
-
|
|
416
390
|
#### canonicalBaseUrl: string
|
|
417
391
|
|
|
418
392
|
The canonical base URL is used for SEO purposes.
|
package/magento/algolia.md
CHANGED
|
@@ -16,10 +16,12 @@ Make sure the Magento 2 module is correctly installed and working.
|
|
|
16
16
|
|
|
17
17
|
```js
|
|
18
18
|
const config = {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
algolia: {
|
|
20
|
+
applicationId: 'your-algolia-application-id', // Stores > Configuration > Algolia Search > Credentials and Basic Setup > Application ID
|
|
21
|
+
indexNamePrefix: 'default_', // Stores > Configuration > Algolia Search > Credentials and Basic Setup > Index name prefix
|
|
22
|
+
searchOnlyApiKey: 'blabla', // Stores > Configuration > Algolia Search > Credentials and Basic Setup > Search-only (public) API key
|
|
23
|
+
catalogEnabled: false, // start with search and if everything works as expected, you can move on to the catalog.
|
|
24
|
+
},
|
|
23
25
|
}
|
|
24
26
|
```
|
|
25
27
|
|
package/package.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"name": "@graphcommerce/docs",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/docs",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce/docs",
|
|
5
|
-
"version": "9.0.0-canary.
|
|
5
|
+
"version": "9.0.0-canary.75",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.75"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|