[Vuejs]-Show images from Amazon S3 private bucket in frontend using Node js Vue js

0👍

You can generate s3 signed URL link for each image and send the links to the front end. Now, the front end can make respective calls to fetch all images.

This will reduce the time that backend does for the processing.

Leave a comment