Fixed
- All requests returning
:ok— the SSE/api/eventshandler was registered with
app.use(eventBus.eventsRoute)which caught every incoming request on the server.
The function wrote:okand never callednext(), so Express never reached the
static middleware. No static files were served: notnow_showing.html, not the
font files, notnow_showing.config.js. Changed to
app.get('/api/events', eventBus.eventsRoute)so it only matchesGET /api/events.