Я хочу загрузить несколько файлов, этот код просто выбирает один файл для загрузки
const { value: file } = await Swal.fire({ title: 'Select image', input: 'file', inputAttributes: { 'accept': 'image/*', 'aria-label': 'Upload your profile picture' } })
Ссылка Codepen
Вам нужно добавить multiple к вашему вводу
multiple
const { value: file } = await Swal.fire({ title: 'Select image', input: 'file', inputAttributes: { 'accept': 'image/*', 'multiple': 'multiple', 'aria-label': 'Upload your profile picture' } })