Vdoing-VuePress 支持 webp 格式图片
为了减少博客中图片的大小,我使用了webp
格式来压缩图像。
但是 Vdoing 主题使用的 VuePress 的版本有一些老,不支持webp
格式的图像。
在 docs\.vuepress\config.ts
中添加以下配置来是其支持webp
格式。
chainWebpack: (config, isServer) => {
const inlineLimit = 10000
config.module.rule('images')
.test(/\.(png|jpe?g|gif|webp)(\?.*)?$/)
.use('url-loader')
.loader('url-loader')
.options({
limit: inlineLimit,
name: `assets/img/[name].[hash:8].[ext]`
})
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
上次更新: 2025/07/07, 15:19:27