Debug Angular Application with multiple tabs Follow
Does anyone know if it is possible to debug an angular application that opens several Tabs when "routed" ?
localhost:4200/app --> I can debug with Intellij
localhost:4200/app/myTask --> opens in a separate tab in chrome and my breakpoints in typescript code are not considered.
Does anyone know if it is possible to debug multiple tabs within Intellij ?
Please sign in to leave a comment.
you have 2 possible solutions here:
- create a different JavaScript debug run configuration for your other page URL
- attach to a tab in a running Chrome
In the latter case, you need starting Chrome with
–remote-debugging-port
option and use Attach to Node.js\Chrome run configuration