Blazor server-side supports almost all modern browsers out of the box except Microsoft’s Internet Explorer (IE 11), which needs Polyfills to be supported.
[_Host.cshtml]
//polyfills to be added for IE
<script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.6.5/core.min.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=fetch"></script>
Blazor WebAssembly (client-side) supports all modern browsers except Internet Explorer.
I would suggest you check the below link for better understanding:
Blazor server-side supports almost all modern browsers out of the box except Microsoft’s Internet Explorer (IE 11), which needs Polyfills to be supported.
Blazor WebAssembly (client-side) supports all modern browsers except Internet Explorer.
I would suggest you check the below link for better understanding:
https://docs.microsoft.com/en-us/aspnet/core/blazor/supported-platforms
need an explanation for this answer? contact us directly to get an explanation for this answer