I've launched chrome from VSCode before without an SSL proxy, so I'm guessing that is at the root of my issues. Here's my VSCode launch.json configuration:
{
"name": "Launch Chrome",
"request": "launch",
"type": "pwa-chrome",
"url": "https://example.com:8000",
"webRoot": "${workspaceFolder}"
}
I'm using webpack in watch mode which is launching on port 8000, and I'm running an Express https server proxy.
The launch config works fine to launch the url, but it does not activate breakpoints within VSCode.
I could not find any information on launch configuration specific to SSL.
Is there anything I can try to get the debugger working properly, and get these breakpoints activated?
Thanks!
