You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All requests returning :ok — the SSE /api/events handler was registered with app.use(eventBus.eventsRoute) which caught every incoming request on the server.
The function wrote :ok and never called next(), so Express never reached the
static middleware. No static files were served: not now_showing.html, not the
font files, not now_showing.config.js. Changed to app.get('/api/events', eventBus.eventsRoute) so it only matches GET /api/events.