LoginSignup
0
0

More than 5 years have passed since last update.

VSCODE my tips

Last updated at Posted at 2016-05-04

my environment
windowns7 64bit


[debugger-for-chrome] Cannot connect to the target: connect ECONNREFUSED 127
image

対応 : chromeを一旦全て閉じる。その後 [デバッグ] 押下でchrome自動起動してつながる。
原因 : 未調査
solve : before debugging close all chrome tabs,after run debug button
ref.Cannot connect to the target (github)

launch.json
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch localhost",
            "type": "chrome",
            "request": "launch",
            "url": "http://localhost/myApp/",
            "sourceMaps": false,
            "webRoot": "${workspaceRoot}"
        }
    ]
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0