I use the .NET 8 WASM template incl. PWA support.
When I run a ASP .NET Minimal Webserver
`var builder = WebApplication.CreateBuilder(args);
//builder.WebHost.UseUrls("http://0.0.0.0:5000");
builder.Services.AddDirectoryBrowser();
var app = builder.Build();
app.UseUnoFrameworkFiles();
app.MapFallbackToFile("index.html");
app.Run();`
I am able to install the PWA; however, it only works when the server is online.