Remove request body size limit

This commit is contained in:
2025-06-15 14:46:33 -04:00
parent 9f557043a1
commit 55336a7c82

View File

@@ -14,6 +14,7 @@ var builder = WebApplication.CreateBuilder(args);
builder.WebHost.ConfigureKestrel(o => builder.WebHost.ConfigureKestrel(o =>
{ {
o.Limits.MaxRequestBodySize = null;
#if !DEBUG #if !DEBUG
o.ListenAnyIP(8081, lo => o.ListenAnyIP(8081, lo =>
{ {