20 lines
660 B
C#
20 lines
660 B
C#
using Microsoft.AspNetCore.Components.Web;
|
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
|
using Front;
|
|
using System.Globalization;
|
|
|
|
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
|
builder.RootComponents.Add<App>("#app");
|
|
builder.RootComponents.Add<HeadOutlet>("head::after");
|
|
builder.Services.AddBlazorBootstrap();
|
|
|
|
|
|
//builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri("https://localhost:7075/api/") });
|
|
|
|
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri("http://localhost:5271/api/") });
|
|
|
|
CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("fa-Ir");
|
|
|
|
await builder.Build().RunAsync();
|
|
|