码迷,mamicode.com
首页 > Web开发 > 详细

VS Code 运行html文件

时间:2018-09-25 17:26:42      阅读:491      评论:0      收藏:0      [点我收藏+]

标签:errors   技术分享   ble   选中   microsoft   chrome   process   warnings   完成   

用VS Code编写html文件,想在VS Code中直接打开运行,配置如下:

配置tasks.json

  1. 打开VS Code,点击“终端”,选择“配置任务”。
    技术分享图片

  2. 选择“使用模板创建tasks.json文件”。
    技术分享图片

  3. 选择“Others”。
    技术分享图片

  4. tasks.json新建完成,默认如下图:
    技术分享图片

  5. 修改tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "在Chrome中运行",
            "type": "process",  // [shell,process]
            "command": "Chrome",
            "args": ["${file}"],
            "windows": {
                "command": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe"
            },
            "group": "build",
            "presentation": {
                // Reveal the output only if unrecognized errors occur.
                "reveal": "never"  //[always,never,silent]
            },
            // Use the standard MS compiler pattern to detect errors, warnings and infos
            "problemMatcher": "$msCompile"
        }
    ]
}

运行任务

选中需要运行的html文件,按住Ctrl+Shift+B,选择“在Chome中运行”,即可。
技术分享图片

文章出处:https://allanhao.com/2018/09/25/vscode-run-html/

VS Code 运行html文件

标签:errors   技术分享   ble   选中   microsoft   chrome   process   warnings   完成   

原文地址:https://www.cnblogs.com/hao-zhang/p/9700363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!