我刚刚下载了最新的角度cli并创建了一个项目。我在IIS上配置了应用程序。我还使用chrome配置了它。当我按F5时,它确实成功启动并显示index.html但突然停止并出现错误无法连接到运行时进程,10000毫秒后超时 - (原因:无法找到匹配的目标:{{3 }}
启动时,应用程序启动时没有任何错误
有人遇到过这个错误吗?
launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://e-techguru.willis.com#/index.html",
"webRoot": "${workspaceRoot}"
}
]
}