@@ -95,6 +95,10 @@ We won't go in depth here about how to debug in VS Code - for that you can check
95
95
"request" : " launch" ,
96
96
"program" : " ${workspaceRoot}/node_modules/.bin/gatsby" ,
97
97
"args" : [" develop" ],
98
+ "env" : {
99
+ "PARCEL_WORKERS" : " 0" ,
100
+ "GATSBY_CPU_COUNT" : " 1" ,
101
+ },
98
102
"runtimeArgs" : [" --nolazy" ],
99
103
"console" : " integratedTerminal"
100
104
},
@@ -104,6 +108,10 @@ We won't go in depth here about how to debug in VS Code - for that you can check
104
108
"request" : " launch" ,
105
109
"program" : " ${workspaceRoot}/node_modules/.bin/gatsby" ,
106
110
"args" : [" build" ],
111
+ "env" : {
112
+ "PARCEL_WORKERS" : " 0" ,
113
+ "GATSBY_CPU_COUNT" : " 1" ,
114
+ },
107
115
"runtimeArgs" : [" --nolazy" ],
108
116
"console" : " integratedTerminal"
109
117
}
@@ -126,6 +134,10 @@ We won't go in depth here about how to debug in VS Code - for that you can check
126
134
"program" : " ${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby"
127
135
},
128
136
"args" : [" develop" ],
137
+ "env" : {
138
+ "PARCEL_WORKERS" : " 0" ,
139
+ "GATSBY_CPU_COUNT" : " 1" ,
140
+ },
129
141
"runtimeArgs" : [" --nolazy" ],
130
142
"console" : " integratedTerminal"
131
143
},
@@ -138,6 +150,10 @@ We won't go in depth here about how to debug in VS Code - for that you can check
138
150
"program" : " ${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby"
139
151
},
140
152
"args" : [" build" ],
153
+ "env" : {
154
+ "PARCEL_WORKERS" : " 0" ,
155
+ "GATSBY_CPU_COUNT" : " 1" ,
156
+ },
141
157
"runtimeArgs" : [" --nolazy" ],
142
158
"console" : " integratedTerminal"
143
159
}
0 commit comments