re_web_viewer_server 0.32.2

Serves the Rerun web viewer (Wasm and HTML) over HTTP
Documentation
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>rerun.io</title>
  </head>
  <style>
    html,
    body {
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      background-color: #0f0f0f;
      color: #b2b2bb;

      font-family:
        Plus Jakarta Sans,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        Fira Sans,
        Droid Sans,
        Helvetica Neue,
        sans-serif;
      font-size: 17px;
      font-weight: 425;
    }
    body {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  </style>
  <body>
    <main id="content">
      Successfully logged out. You can close this page now.
    </main>
    <script>
      // Try to close the popup automatically.
      // This will only work if the window was opened by window.open().
      window.close();
    </script>
  </body>
</html>