diff --git a/.vscode/launch.json b/.vscode/launch.json index 5ee4c6ef..805810c9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,17 +3,30 @@ { "type": "node", "request": "launch", - "name": "Electron Main", + "name": "Debug Configurator", "runtimeExecutable": "${workspaceFolder}/node_modules/@electron-forge/cli/script/vscode.sh", "windows": { "runtimeExecutable": "${workspaceFolder}/node_modules/@electron-forge/cli/script/vscode.cmd", }, + "args": ["--inspect"], "env": { "NODE_ENV": "development" }, "cwd": "${workspaceFolder}", "console": "integratedTerminal" + }, + { + "name": "Debug Main Process", + "type": "node", + "request": "launch", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", + "windows": { + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" + }, + "args" : ["."], + "outputCapture": "std" } ] } \ No newline at end of file diff --git a/index.html b/index.html index d2fce930..8c5b1f5d 100644 --- a/index.html +++ b/index.html @@ -414,7 +414,7 @@