From 8669904edddaf1d8cc14b4062eccb6752691a0dc Mon Sep 17 00:00:00 2001 From: James Chapman Date: Fri, 12 Jul 2024 00:45:34 +0100 Subject: [PATCH] Use new static assets middleware --- Groceries/Components/Layout.razor | 8 +++++--- Groceries/Program.cs | 5 +++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Groceries/Components/Layout.razor b/Groceries/Components/Layout.razor index 6cd13c3..c9feba0 100644 --- a/Groceries/Components/Layout.razor +++ b/Groceries/Components/Layout.razor @@ -9,10 +9,12 @@ - + - - + + + + diff --git a/Groceries/Program.cs b/Groceries/Program.cs index f690b8e..5b0acb0 100644 --- a/Groceries/Program.cs +++ b/Groceries/Program.cs @@ -51,11 +51,12 @@ builder.Services.AddDbContextPool(options => options var app = builder.Build(); -app.UseStaticFiles(); app.UseRouting(); app.UseSession(); -app.MapControllers(); +app.MapStaticAssets(); +app.MapControllers() + .WithStaticAssets(); await app.RunAsync();