24 lines
413 B
C#
24 lines
413 B
C#
|
var builder = WebApplication.CreateBuilder(args);
|
||
|
|
||
|
builder.Services.AddRazorPages();
|
||
|
builder.Services.AddServerSideBlazor();
|
||
|
|
||
|
var app = builder.Build();
|
||
|
|
||
|
if (!app.Environment.IsDevelopment())
|
||
|
{
|
||
|
app.UseExceptionHandler("/Error");
|
||
|
app.UseHsts();
|
||
|
}
|
||
|
|
||
|
app.UseHttpsRedirection();
|
||
|
|
||
|
app.UseStaticFiles();
|
||
|
|
||
|
app.UseRouting();
|
||
|
|
||
|
app.MapBlazorHub();
|
||
|
app.MapFallbackToPage("/_Host");
|
||
|
|
||
|
app.Run();
|