skip to Main Content

Uploading to S3 Bucket with Nest.js error – Javascript

I am trying to upload to an s3 bucket in next and have a couple of errors I am using the package: https://www.npmjs.com/package/@aws-sdk/client-s3 My Controller is: @Post('test-doc') @UseInterceptors(FileInterceptor('file')) async testDocument(@UploadedFile() file: Express.Multer.File) { return this.assetService.upload(file); } With my service: async…

VIEW QUESTION
Back To Top
Search