Skip to content

Commit

Permalink
modified: .vscode/launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
oliik2013 committed Jun 7, 2024
1 parent eb5db0a commit 6d2e87a
Showing 1 changed file with 46 additions and 3 deletions.
49 changes: 46 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,54 @@
"version": "0.2.0",
"configurations": [
{
"type": "vscode-edge-devtools.debug",
"type": "pwa-msedge",
"name": "Launch Microsoft Edge",
"request": "launch",
"runtimeArgs": [
"--remote-debugging-port=9222"
],
"url": "https://oliik2013.github.io/sigma.pl/",
"presentation": {
"hidden": true
}
},
{
"type": "pwa-msedge",
"name": "Launch Microsoft Edge in headless mode",
"request": "launch",
"name": "Launch Microsoft Edge and open the Edge DevTools",
"runtimeArgs": [
"--headless",
"--remote-debugging-port=9222"
],
"url": "https://oliik2013.github.io/sigma.pl/",
"webRoot": "${workspaceFolder}"
"presentation": {
"hidden": true
}
},
{
"type": "vscode-edge-devtools.debug",
"name": "Open Edge DevTools",
"request": "attach",
"url": "https://oliik2013.github.io/sigma.pl/",
"presentation": {
"hidden": true
}
}
],
"compounds": [
{
"name": "Launch Edge Headless and attach DevTools",
"configurations": [
"Launch Microsoft Edge in headless mode",
"Open Edge DevTools"
]
},
{
"name": "Launch Edge and attach DevTools",
"configurations": [
"Launch Microsoft Edge",
"Open Edge DevTools"
]
}
]
}

0 comments on commit 6d2e87a

Please sign in to comment.