Skip to content

Commit e56ba8e

Browse files
committed
debugging target
1 parent 518e1a5 commit e56ba8e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.vscode/launch.json

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"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+
},
725
{
826
"type": "node",
927
"request": "launch",

0 commit comments

Comments
 (0)