1 Star 0 Fork 0

lgc653/my-vite-project

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite-plugin-image-compress.js 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
lgc653 提交于 2024-10-04 20:51 . 追加analyzeBundleSizePlugin
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) {
// 压缩失败
}
}
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lgc653/my-vite-project.git
git@gitee.com:lgc653/my-vite-project.git
lgc653
my-vite-project
my-vite-project
master

搜索帮助