Skip to content

Commit

Permalink
fix: correct program in vsc debug
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkdo committed Oct 17, 2017
1 parent 897dc92 commit a4c42d2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,17 @@
],
"cwd": "${workspaceRoot}",
"sourceMaps": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"env": {
"NODE_ENV": "production",
"DEBUG": "nuxt:*,app"
}
},
{
"name": "Debug Hare Prod",
"type": "node",
"request": "launch",
"protocol": "inspector",
"name": "Debug Hare Prod",
"program": "${workspaceRoot}/.build/dist/server-app",
"program": "${workspaceRoot}/dist/server-app",
"env": {
"NODE_ENV": "production",
"DEBUG": "nuxt:*"
Expand Down

0 comments on commit a4c42d2

Please sign in to comment.