The issue you're facing is likely due to a mismatch in file handling and routing in your Laravel backend for the Tus protocol.
Make sure your route accepts HEAD
:
Route::match(['HEAD'], '/upload/{fileId}', [FileUploadController::class, 'getFileResource']);