Basic Chunked Upload
Enable chunked uploading with chunked: true. Files are split into chunks and uploaded sequentially, enabling reliable large file uploads.
new MultipleUpload(document.getElementById('demo-basic-chunked'), {
uploadUrl: '/api/upload',
multiple: true,
chunked: true
});