I have the following in my launch.json:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Edge",
"request": "launch",
"type": "pwa-msedge",
"url": "https://localhost:44345",
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "https://localhost:44345",
"webRoot": "${workspaceFolder}"
}
]
}
I do not have any issue with using the Launch Chrome option, so I'm not sure if there is additional configuration that I need to do.
"trace": true
in launch config):Steps to reproduce:
I have the following in my launch.json: { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Launch Edge", "request": "launch", "type": "pwa-msedge", "url": "https://localhost:44345", "webRoot": "${workspaceFolder}" }, { "type": "chrome", "request": "launch", "name": "Launch Chrome against localhost", "url": "https://localhost:44345", "webRoot": "${workspaceFolder}" } ] }
I do not have any issue with using the Launch Chrome option, so I'm not sure if there is additional configuration that I need to do.