rename files

This commit is contained in:
Maxime Adler
2025-02-15 21:42:12 +01:00
parent 2ed5f80fb1
commit 7a87e3457b
72 changed files with 5 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
using GameIdeas.WebApp;
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();