Fix issue with manifest being removed in CI build

This commit is contained in:
Archangel
2025-10-02 22:02:54 +02:00
parent c1ae74b9ad
commit 32dafe30a8
+1 -7
View File
@@ -30,14 +30,8 @@ public static class SPTWeb
var logger = app.Services.GetRequiredService<ILogger<App>>();
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<App>().AddInteractiveServerRenderMode();
foreach (var mod in SptWebMods)