We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 022f633 + 97833e2 commit a2e5b27Copy full SHA for a2e5b27
.vscode/launch.json
@@ -7,7 +7,11 @@
7
"request": "launch",
8
"url": "http://localhost:3000",
9
"sourceMaps": true,
10
- "webRoot": "${workspaceRoot}"
+ "webRoot": "${workspaceRoot}",
11
+
12
+ //This line is important, since it instructs chrome to run in a separate, sandbox instance.
13
+ //This way, other running chrome instances won't prevent remote debugging from running.
14
+ "userDataDir": "C:\\temp\\chrome-dev-instance"
15
},
16
{
17
"name": "Attach to Chrome, with sourcemaps",
@@ -18,4 +22,4 @@
18
22
"webRoot": "${workspaceRoot}"
19
23
}
20
24
]
21
-}
25
+}
0 commit comments