代码拉取完成,页面将自动刷新
import path from 'path'
import sharp from 'sharp'
export default function imageCompressPlugin() {
return {
name: 'vite-plugin-image-compress',
enforce: 'post',
async generateBundle(_, bundle) {
for (const fileName in bundle) {
const chunk = bundle[fileName]
if (chunk.type === 'asset' && /\.(png|jpe?g)$/i.test(chunk.fileName)) {
try {
// 压缩图片(在这里可以使用第三方库进行压缩)
console.log('压缩图片:', chunk.fileName);
let sourceFileSize = chunk.source.length;
const outputPath = path.resolve(process.cwd(), 'dist', chunk.fileName);
const compressedBuffer = await sharp(chunk.source)
.jpeg({ quality: 80 })
.toBuffer();
chunk.source = compressedBuffer;
console.log('压缩成功:', chunk.fileName);
// 压缩率:
console.log('压缩率:', (compressedBuffer.length / sourceFileSize).toFixed(2));
} catch (error) {
// 压缩失败
}
}
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。