Skip to content

Latest commit

History

History
28 lines (20 loc) 路 966 Bytes

README.md

File metadata and controls

28 lines (20 loc) 路 966 Bytes

gridbeam.xyz

a landing page for GridBeam

work in progress

Attributions

Misc

How to remove offline service worker

In browser console:

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