diff --git a/.vscode/launch.json b/.vscode/launch.json index 2f2b72f..a3385b8 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,11 +5,11 @@ "version": "0.2.0", "configurations": [ { - "type": "node", + "command": "yarn run dev", + "name": "Run Dev", "request": "launch", - "name": "Debug Payload Public Demo", - "program": "${workspaceFolder}/src/server.ts", - "preLaunchTask": "npm: pre:debug", - }, + "type": "node-terminal", + "cwd": "${workspaceFolder}" + } ] }