[VisualStudioCode] Chrome에서 실행하는 방법

2020. 11. 14. 15:58IDE/VisualStudioCode

728x90

1. ctrl + shift + p 를 누르고 configure task를 입력

 

2. Tasks : Configure Task를 클릭하면 아래에 tasks.json을 클릭하고 MSBuil를 선택

 

3. task.json 파일이 열리면 안의 내용을 아래와 같이 변경(크롬으로 실행)

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

 

4. 이제 실행 할 파일에서 ctrl + shift +b 를 누르면 Chrome에서 파일이 열림

728x90