私は役に立たないように他の投稿でいくつかの提案を試みました。
9か月前のプロジェクトがあり、vsコードでF5デバッグを行うとブラウザーに表示されなくなります。
ChromeブラウザウィンドウでVisual Studioコードを起動するために、index.htmlファイルを使用して新しいシンプルなプロジェクトをセットアップしました。
chromeと表示されます:
このサイトにアクセスできませんlocalhostが接続を拒否しました。もしかして http://localhost8000.com/ ? Googleでlocalhost 8000を検索しますERR_CONNECTION_REFUSED
launch.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": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8000",
"webRoot": "${workspaceFolder}"
}
]
}
index.html:
hello world!!!!!
どんな助けでも大歓迎です!
私は自分のWebサイトをローカルでホストするためにWindowsでララゴンを使用しています。私自身は、URLをララゴンURLに変更するだけで問題なく動作しました
Webサーバーがない場合は、次のように、オプション「webroot」を「file」に変更し、「url」オプションを削除するだけです。
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"file": "${workspaceRoot}/index.html"
}
]
}