Right now the upload implementation takes the whole file and POSTs it to the backend.
The problem with this approach is that your file size is limited by the upload_max_filesize and post_max_size. There should not be the need to raise these values to gigabytes to ensure users can upload any file size.
Filepond has a solution for it, they offer chunkUploads option. The backend needs to support this though
Right now the upload implementation takes the whole file and POSTs it to the backend.
The problem with this approach is that your file size is limited by the upload_max_filesize and post_max_size. There should not be the need to raise these values to gigabytes to ensure users can upload any file size.
Filepond has a solution for it, they offer
chunkUploadsoption. The backend needs to support this though