因為chrome安裝時不像其他軟體的安裝程式一樣選擇安裝路徑,等等,而是直接將 Chrome 安裝在目前的使用者目錄。如果你移動了Chrome的安裝位置,就會出現這個windows找不到Chrome的問題。
可以透過設定tasks.json檔案來解決這個問題。
具體方法如下:
1、按ctrl shift p開啟指令面板,輸入Configure Task然後依序操作
2、然後點擊最後一個打開這個文件,進入到了tasks.json。我們可以看到預設配置如下:
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "echo", "type": "shell", "command": "echo Hello" } ] }
我們需要對這個程式碼進行修改,如下:
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Run HTML file with Chrome", "type": "process", "command": "chrome", "args": ["${file}"], "windows": { //这里写你电脑的Chrome浏览器的安装位置 "command": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe" }, "group": { "kind": "build", "isDefault": true } } ] }
儲存後開啟文件,按下Ctrl Shift B就能打開瀏覽器了。
相關文章教學推薦:vscode教學
以上是vscode提示找不到chrome瀏覽器的解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!