Debbuging Application
Table of Contents
Debugging with VS Code & Delve
Steps to Accomplish:
- Create
launch.json(happens when clickingStart Debuggingfrom Debug menu OR pressingF5) - Update
launch.jsonwith- Update program path -
"program": "${workspaceRoot}/app", - Add arguments -
"args": ["run", "--envprofile", "dev"],
- Update program path -
- Put breakpoints wherever needed
- Run
aah build - Press
F5or clickStart Debuggingfrom Debug menu - That’s it 😃