Skip to content

Commit b5760fe

Browse files
Merge branch 'master' into M-DEV-1/add-sistent-setup-instructions
2 parents 6f68dcc + 62c885d commit b5760fe

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

gatsby-node.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,8 +715,10 @@ exports.onCreateWebpackConfig = ({ actions, stage, getConfig }) => {
715715
},
716716
});
717717

718-
if (stage === "build-javascript") {
718+
// Reduce memory pressure by disabling sourcemaps in dev and build
719+
if (stage === "develop" || stage === "develop-html" || stage === "build-javascript" || stage === "build-html") {
719720
const config = getConfig();
721+
config.devtool = false;
720722
const miniCssExtractPlugin = config.plugins.find(
721723
(plugin) => plugin.constructor.name === "MiniCssExtractPlugin"
722724
);

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"dependencies": {
2929
"@emotion/is-prop-valid": "^1.4.0",
3030
"@emotion/react": "^11.14.0",
31-
"@emotion/styled": "^11.14.0",
31+
"@emotion/styled": "^11.14.1",
3232
"@fullcalendar/core": "^6.1.8",
3333
"@fullcalendar/daygrid": "^6.1.8",
3434
"@fullcalendar/google-calendar": "^6.0.2",

src/sections/Pricing/feature_data.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@
10851085
"teamOperator": "x",
10861086
"enterprise": "x"
10871087
},
1088-
"docs": ""
1088+
"docs": "https://docs.layer5.io/cloud/getting-started/support/"
10891089
},
10901090
{
10911091
"theme": "",
@@ -1101,7 +1101,7 @@
11011101
"teamOperator": "x",
11021102
"enterprise": "x"
11031103
},
1104-
"docs": ""
1104+
"docs": "https://docs.layer5.io/cloud/getting-started/support/"
11051105
},
11061106
{
11071107
"theme": "",
@@ -1117,7 +1117,7 @@
11171117
"teamOperator": "",
11181118
"enterprise": "x"
11191119
},
1120-
"docs": ""
1120+
"docs": "https://docs.layer5.io/cloud/getting-started/support/"
11211121
},
11221122
{
11231123
"theme": "",
@@ -1133,7 +1133,7 @@
11331133
"teamOperator": "",
11341134
"enterprise": "x"
11351135
},
1136-
"docs": ""
1136+
"docs": "https://docs.layer5.io/cloud/getting-started/support/"
11371137
},
11381138
{
11391139
"theme": "",

0 commit comments

Comments
 (0)