Hi,
is it possible to debug an Ionic4 app on Chrome?
Should I start the app with a specific parameter?
Because I can’t see in Chrome the Typescript source file of the shown page.
Thank you very much
Claudio
Hi,
is it possible to debug an Ionic4 app on Chrome?
Should I start the app with a specific parameter?
Because I can’t see in Chrome the Typescript source file of the shown page.
Thank you very much
Claudio
Normally you should see the sources. Try to write debugger;
in your ts where you want to debug. But remember to remove it after you finished.
I’ve found the source in the webpack subdirectory:
I didn’t know the debugger directive, it is dangerous but it works.
Thank you
cld