I have an Uploadcare widget with multi-file uploads.
<ngx-uploadcare-widget #uploadCare
images-only="true"
multiple="isMultiple"
multiple-min="0"
multiple-max="10
data-max-size="21048576"
data-clearable="true"
public-key="****"
(on-change)="onFileUploadChange($event)">
I want the uploaded files size to not exceed 2 MB. How do I set
max-size
for the all uploaded files?How can I prevent duplication for uploading files?