0
如何在使用VS代碼的瀏覽器中運行我的HTML?我試圖在網上找到說明,但我找不到解決方案。用VS代碼在瀏覽器中運行
我嘗試添加這對我tasks.json
:
{
"version": "0.1.0",
"command": "explorer",
"windows": {
"command": "explorer.exe"
},
"args": ["index.html"]
}
但如果我ctrl + shift + b
它只是打開我的文檔文件夾而不是瀏覽器。我嘗試了這裏的步驟:How to view my HTML code in browser with Visual Studio Code?但迄今沒有任何工作。
你試過http://stackoverflow.com/questions/30039512/how-to-view-my-html-code-in-browser-with-visual-studio-code? –
是的。這是我在我的問題中提供的鏈接。 –