Custom Chunk Size
Tune chunk size to match your network and server profile. Smaller chunks help unstable connections recover quickly; larger chunks reduce HTTP overhead on fast networks.
What you should see: 2 MB chunks instead of the default. Pick a file over 2 MB and the network panel shows several numbered chunk POSTs plus one completion call; smaller files still take the single-request path.
Drag & drop files here, or paste from clipboard
Tip: Start around 1 MB to 5 MB. Raise it for fast LAN or intranet uploads, lower it when users are on mobile or unreliable links.
<core-upload asp-upload-url="/api/upload/upload"
asp-chunk-url="/api/upload/chunk"
asp-chunked="true"
asp-chunk-size="2097152"
asp-max-size="100MB"
asp-progress="true"
asp-auto-upload="true">
</core-upload>
<!-- 262144 = 256 KB -->
<!-- 1048576 = 1 MB -->
<!-- 5242880 = 5 MB -->
<!-- 52428800 = 50 MB -->