我刚刚创建了一个新的项目,并第一次运行它使用 F5或 Ctrl + F5。Chrome 的结果是:
无法联系到该网站
Err _ connect _ 拒绝
我在断点处检查了“捕获异常”的选项,并显示了以下错误。
如果没有选中“捕获异常”,则会引发下一个错误:
我试着从终端运行“ ng s-o”,一切正常。站点在端口4200上运行良好,但我喜欢调试。
这是我的 发射 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": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}"
}
]
}
为什么会这样?