We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 518e1a5 commit e56ba8eCopy full SHA for e56ba8e
.vscode/launch.json
@@ -4,6 +4,24 @@
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
"version": "0.2.0",
6
"configurations": [
7
+ {
8
+ "name": "Launch Gatsby build",
9
+ "program": "${workspaceFolder}/node_modules/.bin/gatsby",
10
+ "request": "launch",
11
+ "skipFiles": [
12
+ "<node_internals>/**"
13
+ ],
14
+ "type": "node",
15
+ "smartStep": true,
16
+ "showAsyncStacks": true,
17
+ "args": ["build"],
18
+ "runtimeArgs": ["--no-lazy"],
19
+ "console": "integratedTerminal",
20
+ "env": {
21
+ "PARCEL_WORKERS": "0",
22
+ "GATSBY_CPU_COUNT": "1",
23
+ }
24
+ },
25
{
26
"type": "node",
27
"request": "launch",
0 commit comments