Skip to content

Commit 80f135c

Browse files
committed
Add VSCode launch configuration for Chrome debugging
1 parent 380bb30 commit 80f135c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Attach to Chrome",
9+
"port": 9222,
10+
"request": "attach",
11+
"type": "chrome",
12+
"webRoot": "${workspaceFolder}"
13+
},
14+
{
15+
"type": "chrome",
16+
"request": "launch",
17+
"name": "Launch Chrome against localhost",
18+
"url": "http://localhost:8080",
19+
"webRoot": "${workspaceFolder}"
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)