Ubuntu 18.04 Visual Studio Code로 HTML 파일 Chrome으로 실행시키기

키느구스님의 글 "VS Code 에서 크롬 브라우저로 JavaScript 실행하기." 를 응용하여 Ubuntu에 맞게 바꿔 봄.

먼저 ctrl+shift+p를 눌러서 "Task: Configure Task"를 클릭.


그 다음 그냥 아무거나 누름 (e.g., "Others")
어차피 덮어씌울 것임.


그럼 task.json이 생성될텐데, 다음의 코드로 갈아엎기.
(Windows의 경우 주석 처리된 부분을 대신 사용하기!)

{
    "version": "2.0.0",
    "tasks": [
        {
            "taskName": "Chrome",
            "type": "process",
            //"command": "chrome.exe",
            "command": "google-chrome",
            "windows": {
                //"command": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
                "command": "/usr/bin/google-chrome"
            },
            "args": [
                "${file}"
            ],
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

이제 아래와 같은 HTML 파일을 ctrl + shift + b 로 build 하면 chrome이 잘 뜰 것임.


밑에 GPU 관련 에러가 뜨는데 일단은 넘어가도록 한다..

Comments