Debugging

· WEB/Vue.js
[Vue.js] vscode 에서 vue 디버깅 1. vscode 에서 디버깅 모드 설정 가장 먼저 vscode에서 DEBUG 화면에 들어가서 [톱니바퀴모양]을 누른다. launch.json 파일이 자동으로 열리게 되며, 여기서 디버깅 모드 설정을 할 수 있다. 🔨 launch.json 파일 // launch.json { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configu..
· WEB/Electron
[Electron] Developer Tool 개발자 도구 활성화 방법 const { BrowserWindow } = require('electron') let win = new BrowserWindow() win.webContents.openDevTools() 또는 Ctrl + Shift + I [참고] electron Document
S0PH1A
'Debugging' 태그의 글 목록