mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
meta: fix AwsS3 endpoint option in private/dev
This commit is contained in:
parent
f665a5ab81
commit
b0c5dacbc5
1 changed files with 8 additions and 2 deletions
|
|
@ -165,10 +165,16 @@ export default () => {
|
|||
uppyDashboard.use(Tus, { endpoint: TUS_ENDPOINT, limit: 6 })
|
||||
break
|
||||
case 's3':
|
||||
uppyDashboard.use(AwsS3, { companionUrl: COMPANION_URL, limit: 6 })
|
||||
uppyDashboard.use(AwsS3, {
|
||||
endpoint: COMPANION_URL,
|
||||
shouldUseMultipart: false,
|
||||
})
|
||||
break
|
||||
case 's3-multipart':
|
||||
uppyDashboard.use(AwsS3, { companionUrl: COMPANION_URL, shouldUseMultipart: true })
|
||||
uppyDashboard.use(AwsS3, {
|
||||
endpoint: COMPANION_URL,
|
||||
shouldUseMultipart: true,
|
||||
})
|
||||
break
|
||||
case 'xhr':
|
||||
uppyDashboard.use(XHRUpload, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue