|
|
@ -4,8 +4,14 @@ using BlazorFluentUI.Components; |
|
|
|
var builder = WebApplication.CreateBuilder(args); |
|
|
|
var builder = WebApplication.CreateBuilder(args); |
|
|
|
|
|
|
|
|
|
|
|
// Add services to the container. |
|
|
|
// Add services to the container. |
|
|
|
builder.Services.AddRazorComponents() |
|
|
|
builder.Services.AddRazorComponents(options => |
|
|
|
.AddInteractiveServerComponents(); |
|
|
|
{ |
|
|
|
|
|
|
|
options.DetailedErrors = true; |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
.AddInteractiveServerComponents(options => |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
options.DetailedErrors = true; |
|
|
|
|
|
|
|
}); |
|
|
|
builder.Services.AddFluentUIComponents(); |
|
|
|
builder.Services.AddFluentUIComponents(); |
|
|
|
|
|
|
|
|
|
|
|
var app = builder.Build(); |
|
|
|
var app = builder.Build(); |
|
|
|