Skip to content

Instantly share code, notes, and snippets.

@xiaomi7732
Created October 9, 2022 15:30
Show Gist options
  • Select an option

  • Save xiaomi7732/591a4b55a380b629d88e1f388f709ec0 to your computer and use it in GitHub Desktop.

Select an option

Save xiaomi7732/591a4b55a380b629d88e1f388f709ec0 to your computer and use it in GitHub Desktop.
Stop auto loading Blazor pages
<body>
    ...

    <script src="_framework/blazor.{webassembly|server}.js" autostart="false"></script>
    <script>
      document.addEventListener("DOMContentLoaded", function() {
        Blazor.start();
      });
    </script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment