From 32dafe30a80914aacc4c29f4c189aecdc01d5a10 Mon Sep 17 00:00:00 2001 From: Archangel Date: Thu, 2 Oct 2025 22:02:54 +0200 Subject: [PATCH] Fix issue with manifest being removed in CI build --- Libraries/SPTarkov.Server.Web/SPTWeb.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Libraries/SPTarkov.Server.Web/SPTWeb.cs b/Libraries/SPTarkov.Server.Web/SPTWeb.cs index afc034c6..cb08fdf7 100644 --- a/Libraries/SPTarkov.Server.Web/SPTWeb.cs +++ b/Libraries/SPTarkov.Server.Web/SPTWeb.cs @@ -30,14 +30,8 @@ public static class SPTWeb var logger = app.Services.GetRequiredService>(); app.UseAntiforgery(); - -#if DEBUG - //MS currently has a bug where streaming video doesn't work properly in debug, unless you use this - //Issue: https://github.com/dotnet/aspnetcore/issues/63320 app.UseStaticFiles(); -#else - app.MapStaticAssets(); -#endif + var razorBuilder = app.MapRazorComponents().AddInteractiveServerRenderMode(); foreach (var mod in SptWebMods)