25 lines
1.0 KiB
C#
25 lines
1.0 KiB
C#
using Atomx.Admin.Client.Services;
|
|
using Atomx.Admin.Client.Utils;
|
|
using Blazored.LocalStorage;
|
|
using Microsoft.AspNetCore.Components.Authorization;
|
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
|
|
|
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
|
|
|
builder.Services.AddBlazoredLocalStorageAsSingleton();
|
|
|
|
builder.Services.AddAuthorizationCore();
|
|
builder.Services.AddCascadingAuthenticationState();
|
|
builder.Services.AddSingleton<AuthenticationStateProvider, PersistentAuthenticationStateProvider>();
|
|
builder.Services.AddScoped<IPermissionService, ClientPermissionService>();
|
|
builder.Services.AddScoped<IconsExtension>();
|
|
builder.Services.AddScoped<ILocalizationService, LocalizationClientService>();
|
|
builder.Services.AddScoped<ITokenProvider, ClientTokenProvider>();
|
|
builder.Services.AddScoped<AuthHeaderHandler>();
|
|
builder.Services.AddHttpClientApiService(builder.Configuration["WebApi:ServerUrl"] ?? builder.HostEnvironment.BaseAddress);
|
|
|
|
builder.Services.AddAntDesign();
|
|
|
|
|
|
await builder.Build().RunAsync();
|