@jetshop/template-trend 5.13.3-beta.0 → 5.14.0-alpha.abd04298
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/package.json +5 -5
- package/src/shop.config.js +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetshop/template-trend",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.14.0-alpha.abd04298",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "react-scripts build",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@jetshop/core": "^5.
|
|
48
|
+
"@jetshop/core": "^5.14.0-alpha.abd04298",
|
|
49
49
|
"@jetshop/flight-shortcodes": "^2.0.10",
|
|
50
|
-
"@jetshop/intl": "^5.
|
|
51
|
-
"@jetshop/react-scripts": "^5.
|
|
52
|
-
"@jetshop/ui": "^5.
|
|
50
|
+
"@jetshop/intl": "^5.14.0-alpha.abd04298",
|
|
51
|
+
"@jetshop/react-scripts": "^5.14.0-alpha.abd04298",
|
|
52
|
+
"@jetshop/ui": "^5.14.0-alpha.abd04298",
|
|
53
53
|
"@react-google-maps/api": "~1.7.0",
|
|
54
54
|
"prop-types": "^15.6.2",
|
|
55
55
|
"react": "^16.9.0",
|
package/src/shop.config.js
CHANGED
|
@@ -14,7 +14,7 @@ import ContentPage from './components/ContentPage/ContentPage.loadable';
|
|
|
14
14
|
const config = {
|
|
15
15
|
theme,
|
|
16
16
|
apolloConfig: {
|
|
17
|
-
shopid: process.env.REACT_APP_SHOP_ID || '
|
|
17
|
+
shopid: process.env.REACT_APP_SHOP_ID || 'demostore',
|
|
18
18
|
graphQLURI:
|
|
19
19
|
process.env.REACT_APP_GRAPHQL_URI || 'https://storeapi.jetshop.io/',
|
|
20
20
|
token:
|
|
@@ -46,7 +46,10 @@ const config = {
|
|
|
46
46
|
},
|
|
47
47
|
channelOverrides: {},
|
|
48
48
|
disableGeoRedirect: true,
|
|
49
|
-
singleDomainMode:
|
|
49
|
+
singleDomainMode:
|
|
50
|
+
typeof process.env.REACT_APP_SINGLE_DOMAIN_MODE === 'undefined'
|
|
51
|
+
? true
|
|
52
|
+
: process.env.REACT_APP_SINGLE_DOMAIN_MODE, // default to true if this env var is not set
|
|
50
53
|
schemaExtensions: [],
|
|
51
54
|
preserveRedirect: true,
|
|
52
55
|
structuredData: {
|