This commit is contained in:
2026-06-10 21:31:37 -04:00
parent 01a49c1c30
commit 3e80ce78a0
119 changed files with 6234 additions and 8 deletions
+2
View File
@@ -1,11 +1,13 @@
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Web;
using Web.Services;
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) });
builder.Services.AddScoped<DocsService>();
await builder.Build().RunAsync();