gatsby-transformer-cloudinary
gatsby-transformer-cloudinary copied to clipboard
undefined undefined error
I've problem transforming and sourcing back from cloudinary. I've raised a ticket here. The problem is not yet solved. Do help me out. Thanks.
I've also seen this - uploading around 11000 image it sometime appears. Throttling gatsby with this seemed to help - but i don't know if its a co-incidence it seemed to come and go: GATSBY_CONCURRENT_DOWNLOAD=100
@beingabstrac could you share your gatsby-config.js setup for gatsby-transformer-cloudinary
also, what is the max size of a single image you're working with?
{
resolve: "gatsby-transformer-cloudinary",
options: {
cloudName: process.env.CLOUDINARY_CLOUD_NAME,
apiKey: process.env.CLOUDINARY_API_KEY,
apiSecret: process.env.CLOUDINARY_API_SECRET,
uploadFolder: "gatsby-cloudinary",
breakpointsMaxImages: 3,
createDerived: false,
},
},
our image sizes vary - but we're doing this:
const MAX_FILE_SIZE = 80000000
if (mediaSource.size > MAX_FILE_SIZE) {
reporter.warn(`File too big ${imageUrl}`)
return false
}
we haven't seen the error in some time now
@beingabstrac could you share your gatsby-config.js setup for
gatsby-transformer-cloudinary
also, what is the max size of a single image you're working with?
@Chuloo
average file size of ~1,300 would be around ~100kb using imageoptim to compress images!
Hi @beingabstrac been a while, circling back to this. Is this issue still prevalent?