(function () {
  fetch('VERSION.txt', {
    headers: {
      "Cache-Control": 'no-cache, no-store, must-revalidate, post-check=0, pre-check=0',
      Pragma:          'no-cache',
      Expires:         '0',
    }
  })
    .then((res) => res.text())
    .then((version) => {
      if ( localStorage.getItem('Plexus-f1cbc756-0793-446a-a388-bd446976c3b6') !== version ) {
        localStorage.setItem('Plexus-f1cbc756-0793-446a-a388-bd446976c3b6', version);
        location.reload();
      }
    })
    .catch((e) => console.error(e))
}(this));