Recreated solution with web app template. Improved theme. Switched to ShadcnBlazor library
This commit is contained in:
15
Hosts/Moonlight.Frontend.Host/Program.cs
Normal file
15
Hosts/Moonlight.Frontend.Host/Program.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||
using Moonlight.Frontend.Host;
|
||||
|
||||
var appLoader = new AppStartupLoader();
|
||||
appLoader.Initialize();
|
||||
|
||||
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||||
|
||||
appLoader.PreBuild(builder);
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
appLoader.PostBuild(app);
|
||||
|
||||
await app.RunAsync();
|
||||
Reference in New Issue
Block a user