From 00ee5b8adde7faaff9ab122a3a85d251a4ed89db Mon Sep 17 00:00:00 2001 From: Anatolii Grynchuk Date: Sat, 2 May 2026 03:14:25 +0300 Subject: [PATCH] fix: disable StaticWebAssetsEnabled to prevent wwwroot manifest path crash MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The development static web assets manifest embedded a stale C:\src\ path, crashing the app on startup via UseStaticWebAssets(). Disabling the manifest is correct for a containerized service — wwwroot files are still copied to bin output and served normally via UseStaticFiles(). Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../HrynCo.NotificationService.Web.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/HrynCo.NotificationService.Web/HrynCo.NotificationService.Web.csproj b/HrynCo.NotificationService.Web/HrynCo.NotificationService.Web.csproj index 72f7b80..0514d66 100644 --- a/HrynCo.NotificationService.Web/HrynCo.NotificationService.Web.csproj +++ b/HrynCo.NotificationService.Web/HrynCo.NotificationService.Web.csproj @@ -4,6 +4,7 @@ net10.0 enable enable + false