Im trying to use the google chrome debugger and everytime i press the debug button I get cannot reach localhost? what am I doing wrong?
my launch.json is set up like this...
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:1234",
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 9222,
"webRoot": "${workspaceFolder}"
}
]
}
any help would be appreciated and please let me know if more info is needed..