48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using BlazorSignalRApp.Client.Pages;
|
|
using BlazorSignalRApp.Components;
|
|
using Microsoft.AspNetCore.ResponseCompression;
|
|
using BlazorSignalRApp.Hubs;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddRazorComponents()
|
|
.AddInteractiveWebAssemblyComponents();
|
|
|
|
builder.Services.AddSignalR();
|
|
|
|
builder.Services.AddResponseCompression(opts =>
|
|
{
|
|
opts.MimeTypes = ResponseCompressionDefaults.MimeTypes.Concat(
|
|
["application/octet-stream"]);
|
|
});
|
|
|
|
var app = builder.Build();
|
|
|
|
app.UseResponseCompression();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseWebAssemblyDebugging();
|
|
}
|
|
else
|
|
{
|
|
app.UseExceptionHandler("/Error", createScopeForErrors: true);
|
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.MapStaticAssets();
|
|
app.UseAntiforgery();
|
|
|
|
app.MapRazorComponents<App>()
|
|
.AddInteractiveWebAssemblyRenderMode()
|
|
.AddAdditionalAssemblies(typeof(BlazorSignalRApp.Client._Imports).Assembly);
|
|
|
|
app.MapHub<ChatHub>("/chathub");
|
|
|
|
app.Run();
|