†Microsoft Internet Explorer doesn’t support with WebAssembly
. So, Blazor WebAssembly application does not support with Internet Explorer.
†Microsoft Internet Explorer supports Blazor Server
app with additional polyfills. Find the following steps to add the polyfills in the Blazor server application.
github.com/Daddoon/Blazor.Polyfill
in the <head>
element of the ~/Pages/_Host.cshtml page.<head>
.....
.....
<script src="https://github.com/Daddoon/Blazor.Polyfill/releases/download/3.0.1/blazor.polyfill.min.js"></script>
</head>
This polyfill is required to configure in Blazor server application for IE 11 support.