How to view an HTML file in the browser with Visual Studio Code

前端 未结 23 1666
[愿得一人]
[愿得一人] 2020-11-28 17:43

How can I view my HTML code in a browser with the new Microsoft Visual Studio Code?

With Notepad++ you have the option to Run in a browser. How can I do the same thi

23条回答
  •  遥遥无期
    2020-11-28 17:52

    my runner script looks like :

    {
        "version": "0.1.0",
    
        "command": "explorer",
    
        "windows": {
            "command": "explorer.exe"
        },
    
        "args": ["{$file}"]
    }
    

    and it's just open my explorer when I press ctrl shift b in my index.html file

提交回复
热议问题