mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 13:20:50 +01:00
23 lines
694 B
C#
23 lines
694 B
C#
|
using System;
|
||
|
using System.Net.Http;
|
||
|
using System.Threading.Tasks;
|
||
|
using Microsoft.AspNetCore.Components.Web;
|
||
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
|
||
|
namespace Demos.Web;
|
||
|
|
||
|
internal static class Program {
|
||
|
|
||
|
private static async Task Main(string[] args) {
|
||
|
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||
|
builder.RootComponents.Add<App>("#app");
|
||
|
builder.RootComponents.Add<HeadOutlet>("head::after");
|
||
|
builder.Services.AddScoped(_ => new HttpClient {
|
||
|
BaseAddress = new Uri(builder.HostEnvironment.BaseAddress)
|
||
|
});
|
||
|
await builder.Build().RunAsync();
|
||
|
}
|
||
|
|
||
|
}
|