We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27dd4fb commit e6938daCopy full SHA for e6938da
src/lib/templates/imageFunction.js
@@ -94,6 +94,7 @@ const handler = async (event) => {
94
// The format methods are just to set options: they don't
95
// make it return that format.
96
const { info, data: imageBuffer } = await sharp(bufferData)
97
+ .rotate()
98
.jpeg({ quality, mozjpeg: true, force: ext === 'jpg' })
99
.png({ quality, palette: true, force: ext === 'png' })
100
.webp({ quality, force: ext === 'webp' })
0 commit comments