Skip to content

Commit 04ede0d

Browse files
authored
[wasm] Fix blazor startup measurements (#93696)
#93548 introduced a typo, which caused the blazor startup measurements to not load the page completely. The snapshot version is still not loading right, that's probably because we don't use https yet.
1 parent 3c3f66e commit 04ede0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/mono/sample/wasm/blazor-frame/wwwroot/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<a href="" class="reload">Reload</a>
2727
<a class="dismiss">🗙</a>
2828
</div>
29-
<script type="module" src="./_framework/blazor.webassembly.js"></script>
29+
<script src="./_framework/blazor.webassembly.js"></script>
3030
<script type="module" src="./frame.js"></script>
3131
</body>
3232

src/mono/sample/wasm/blazor-frame/wwwroot/start.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<a href="" class="reload">Reload</a>
2727
<a class="dismiss">🗙</a>
2828
</div>
29-
<script type="module" src="./_framework/blazor.webassembly.js" autostart="false"></script>
29+
<script src="./_framework/blazor.webassembly.js" autostart="false"></script>
3030
<script type="module" src="./start.js"></script>
3131
</body>
3232

0 commit comments

Comments
 (0)