Blazor is a framework for building interactive web UIs using C# instead of JavaScript. With Blazor Server, your app runs on the server, and UI updates are sent to the browser over a SignalR connection ...
I want to have an app that has a part which also must function offline. So my thought was to create a Blazor Web App (.NET 10) with WebAssembly Interactive render mode and implement the PWA part there ...