sulagnacc
sulagnacc
Hello, We are having trouble previewing the images at the Strapi backend. As Strapi is creating a size folder for every image, if we only allow the domain in i.e...
I have got a solution of this problem. This problem is related to Strapi. I have added some code in the plugin.ts. Reference is taken from Strapi documentation https://docs-v3.strapi.io/developer-docs/latest/development/plugins/upload.html#configuration I...
In my case I keep uniform: true because I was getting the error "Error uploading file to Google Cloud Storage: Cannot insert legacy ACL for an object when uniform bucket-level...
No, I have tried uniform access only. Here is the code: plugin.ts ``` generateUploadFileName: (file) => { let folder=''; if(file.width>=1920){ folder='xlarge' }else if(file.width>=1000){ folder='large' }else if(file.width>=750){ folder='medium' }else if(file.width>=500){ folder='small'...