mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
10 lines
436 B
C#
10 lines
436 B
C#
|
|
using BlazorWebAssembly.Client;
|
||
|
|
using Microsoft.AspNetCore.Components.Web;
|
||
|
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||
|
|
|
||
|
|
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||
|
|
builder.RootComponents.Add<App>("#app");
|
||
|
|
builder.RootComponents.Add<HeadOutlet>("head::after");
|
||
|
|
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
|
||
|
|
await builder.Build().RunAsync();
|