ProductList

This commit is contained in:
Michał Zieliński
2025-07-17 14:29:02 +02:00
parent 518eff0ec7
commit 2a42f16daf
17 changed files with 397 additions and 38 deletions

View File

@@ -1,4 +1,5 @@
using Bimix.UI.Shared;
using Bimix.UI.Shared.Extensions;
using Bimix.UI.Web.Components;
using MudBlazor.Services;
@@ -7,10 +8,9 @@ var builder = WebApplication.CreateBuilder(args);
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
builder.Services.AddMudServices();
builder.Services.AddHttpClient("BimixAPI", client =>
{
client.BaseAddress = new Uri("https://localhost:7071");
});
builder.Services.AddSharedServices("http://localhost:7142");
var app = builder.Build();