Cómo detectar si el usuario se desconecta

Debes escuchar los eventos de ventana online u offline.

function updateOnlineStatus(event) {
  // HAZ TU COSA
}

window.addEventListener('online', updateOnlineStatus);
window.addEventListener('offline', updateOnlineStatus);

Copyright © 2024. Design and code by myself with Next.js. Fork it and create yours