无法在vscode中运行网页

时间:2020-06-27 14:32:25

标签: visual-studio-code

我是vscode的新手。

我的问题可能看起来很愚蠢。

我有3个文件:index.htmlindex.jsindex.css

我安装了chrome调试扩展程序,无法弄清楚如何运行我的代码

如果我想运行/调试,我会在chrome中遇到此错误

chrome ERR_CONNECTION_REFUSED

我确定launch.json文件存在问题。在这里:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "pwa-chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://localhost:8080",
            "webRoot": "${workspaceFolder}"
        }
    ]
}

我要启动的index.html

1 个答案:

答案 0 :(得分:3)

由于您没有运行任何网络服务器来使其在localhost上运行,因此无法将URL设置为localhost,而只是告诉chrome从您的工作区中打开文件。

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "pwa-chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "${workspaceFolder}/index.html", // <-- This should be the path of the index.html file relative to the workspace
            "webRoot": "${workspaceFolder}"
        }
    ]
}