Uncaught Error: No URL provided.
at new Dropzone (dropzone.js:7938:1)
at dropzone.js:9829:1
at Dropzone.discover (dropzone.js:9841:4)
at Dropzone._autoDiscoverFunction (dropzone.js:10412:1)
at HTMLDocument.init (dropzone.js:10377:1)
Dropzone @ dropzone.js:7938
(anonymous) @ dropzone.js:9829
Dropzone.discover @ dropzone.js:9841
Dropzone._autoDiscoverFunction @ dropzone.js:10412
init @ dropzone.js:10377
dropzone.js:7917 Uncaught Error: Dropzone already attached.
at new Dropzone (dropzone.js:7917:1)
at HTMLDivElement.
to reproduce:
run npm run localhost
and open page with http://localhost:3000/crud/file-upload/dropzonejs.html
Hi,
Check if you are initializing Dropzone multiple times on the same element. Each Dropzone instance should be attached to a unique element. If you have multiple instances, make sure they are targeting different elements or remove any duplicate initializations.
Thanks