Category: <span>Blazor</span>

How to prevent javascript errors after upgrading Mudblazor

Mudblazor is an awesome library to quickly make professional looking Blazor component. As you might expect, it’s fully based on Css/Javascript. Since your browser caches css/javascript, upgrading Mudblazor can cause issues. An error like this might be shown in the browser console A simple solution is to CTRL-F5 your app …

How to use CertifyMe with Nginx and Blazor Server on Windows.

It much easier to setup Nginx to use https and forward http requests to your Blazor server app then to build https in your app. So first, add the following to your nginx.conf file. Assuming here that nginx is location in C:\Tools Then mkdir “C:\tools\nginx\html\.well-known\acme-challenge” echo “test” > “C:\tools\nginx\html\.well-known\acme-challenge\configcheck” Now …