|
@@ -108,6 +108,7 @@ export default {
|
|
mounted() {
|
|
mounted() {
|
|
this.dropzoneOptions = {
|
|
this.dropzoneOptions = {
|
|
url: `${this.config.baseURL}/upload`,
|
|
url: `${this.config.baseURL}/upload`,
|
|
|
|
+ timeout: 300000, // 5 minutes
|
|
autoProcessQueue: true,
|
|
autoProcessQueue: true,
|
|
addRemoveLinks: false,
|
|
addRemoveLinks: false,
|
|
parallelUploads: 5,
|
|
parallelUploads: 5,
|
|
@@ -118,7 +119,7 @@ export default {
|
|
chunking: true,
|
|
chunking: true,
|
|
retryChunks: true,
|
|
retryChunks: true,
|
|
retryChunksLimit: 3,
|
|
retryChunksLimit: 3,
|
|
- parallelChunkUploads: false,
|
|
|
|
|
|
+ parallelChunkUploads: true,
|
|
chunkSize: this.config.chunkSize * 1000000,
|
|
chunkSize: this.config.chunkSize * 1000000,
|
|
chunksUploaded: this.dropzoneChunksUploaded,
|
|
chunksUploaded: this.dropzoneChunksUploaded,
|
|
maxFilesize: this.config.maxFileSize,
|
|
maxFilesize: this.config.maxFileSize,
|