Hi, when I change from Blazor RC1 to Official Blazor Toolbelt compile and generate sources files but not load in browser,
The problem seems to happen when you change
Microsoft.AspNetCore.Blazor.Hosting by Microsoft.AspNetCore.Components.WebAssembly.Hosting
and using in
builder.Services.AddI18nText();
It work add this lines in Program.Main
builder.Services
.AddTransient(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) })
.AddI18nText();
Hi, when I change from Blazor RC1 to Official Blazor Toolbelt compile and generate sources files but not load in browser, The problem seems to happen when you change Microsoft.AspNetCore.Blazor.Hosting by Microsoft.AspNetCore.Components.WebAssembly.Hosting and using in builder.Services.AddI18nText();