Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 362 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 362 Bytes

sunrise.social

a landing page for the Sunrise Social android app

Misc

How to remove offline service worker

In browser console:

navigator.serviceWorker.getRegistrations().then(registrations => {
  for (let registration of registrations) {
    registration.unregister()
  }
})