@graphcommerce/docs 6.2.0-canary.50 → 6.2.0-canary.51
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 +6 -0
- package/magento/readme.md +14 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.2.0-canary.51
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`2f479c830`](https://github.com/graphcommerce-org/graphcommerce/commit/2f479c830e84137b739d83bc6dd1e36a6e299e3a) - Added advise about URL suffixes ([@paales](https://github.com/paales))
|
|
8
|
+
|
|
3
9
|
## 6.2.0-canary.50
|
|
4
10
|
|
|
5
11
|
## 6.2.0-canary.49
|
package/magento/readme.md
CHANGED
|
@@ -50,6 +50,20 @@ For Magento Open Source:
|
|
|
50
50
|
For Adobe Commerce:
|
|
51
51
|
`Stores -> Attributes -> Customer Address -> street -> Lines Count`
|
|
52
52
|
|
|
53
|
+
### Remove URL suffixes from products and categorories (optional)
|
|
54
|
+
|
|
55
|
+
GraphCommerce does not support URL suffixes, because Next.js can not handle urls
|
|
56
|
+
ending in `.html`. When migrating from an existing shop, GraphCommerce will
|
|
57
|
+
automatically redirect to the suffix-less URL. However, GraphCommerce will need
|
|
58
|
+
to do an additional query to Magento to find the route.
|
|
59
|
+
|
|
60
|
+
If you are starting out from a new project, we recommend to remove the URL
|
|
61
|
+
suffixes from products and categories.
|
|
62
|
+
|
|
63
|
+
Remove the URL suffixes from products and categories. (default is `.html`)
|
|
64
|
+
`Stores -> Configuration -> Catalog -> Catalog -> Search Engine Optimization -> Product URL Suffix`
|
|
65
|
+
`Stores -> Configuration -> Catalog -> Catalog -> Search Engine Optimization -> Category URL Suffix`
|
|
66
|
+
|
|
53
67
|
## Optional packages
|
|
54
68
|
|
|
55
69
|
- [Store Pickup / MSI](https://github.com/graphcommerce-org/graphcommerce/tree/main/packages/magento-cart-pickup)
|
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": "6.2.0-canary.
|
|
5
|
+
"version": "6.2.0-canary.51",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "6.2.0-canary.
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "6.2.0-canary.51"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|