Debugging - Infragistics/livewire GitHub Wiki
The best way to debug Livewire is to launch the application via npm:
$ npm start
Then, once Livewire is open then open the debugging tools via the View
menu or by pressing the hot keys of Ctrl/Cmd+Shift+T
.
Tip from Your Uncle Craig
As you navigate to the Sources pane in the debugging tools sometimes you won't see the script file you are looking for to set breakpoints. The easiest way I have found to get around this is to manually add a debugger
statement to the file you want to debug so it shows up in the window. Once you have it in focus you can delete the debugger
statement and then begin adding dynamic breakpoints.