Is it possible to add a breakpoint on Chrome?

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.

ScreenHunter_673 Feb. 28 12.15

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.

1 Like

I’ve found the source in the webpack subdirectory:
debug

I didn’t know the debugger directive, it is dangerous but it works.

Thank you

cld