Results 236 comments of jsakamoto
trafficstars

@nakigoe I guessed your `Program.cs` maybe like below: ```csharp var builder = WebAssemblyHostBuilder.CreateDefault(args); builder.RootComponents.Add("#app"); ... builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); builder.Services.AddGoogleAnalytics("UA-111742878-2"); ... await builder.Build().RunAsync(); ```...

Fortunately, you can do that already! If there is the `wwwroot/appsettings.Prerendering.json`, it will be loaded and override the `wwwroot/appsettings.json`. That feature is provided by ASP.NET Core standard way, not by...

> When I did it previously, it seemed like it didn't work That's right, and application setting support has been started from v.1.0.0-preview.13, Dec 2021, about three months ago. :)...

@fingers10 Thanks for a good idea! Yes, the "BlazorWasmPreRendering.Build" can be able to have an ability to minify output HTML files. I'll try to implement that in some days. (Unfortunately,...

Thank you for posting. Yes, this library renders meta/link elements as semi-random order. And this library doesn't provide a way to control the ordering of those elements. This is one...

Thank you for your report. Could you attach a sample project that can reproduce the problem to this thread?

@AradAral Thank you for your interesting proposal! However, what you want to do can be implemented without changing this library easily, I think. I wrote a sample code (Please see...

Thank you for your proposal! I'm not sure that the library for Blazor that manipulating CSS class names and attributes of the `` already exists. Anyway, It is very interesting...

@doanhquang2005 Please tell me what your `Startup.cs` code is.

@doanhquang2005 I could not reproduce your issue yet. Could you attach all files of a sample project which can reproduce that issue as a single zip package to this thread?