Name Message Date
📄 index.html WASM Build! 1 month ago
📄 wasm/index.html
<!doctype html>
<html lang="en">
  <head>
    <base href="/bunny-herding/" />
  </head>

  <body style="margin: 0px">
    <script type="module">
      import init from "./bevy_game.js";

      init().catch((error) => {
        if (
          !error.message.startsWith(
            "Using exceptions for control flow, don't mind me. This isn't actually an error!",
          )
        ) {
          throw error;
        }
      });
    </script>
  </body>
</html>