I have checked the Event Listeners Tab, but it doesn't seem to show server sent event listeners.
const sse = new EventSource('/api/v1/sse');
sse.addEventListener("notice", function(e) {
console.log(e.data)
})
Having written the above code, is there a way to monitor all my sse named events & listeners using Chrome DevTools?