Xz's blog Xz's blog
首页
时间序列
多模态
合成生物学
其他方向
生活
工具相关
PyTorch
导航站

Xu Zhen

首页
时间序列
多模态
合成生物学
其他方向
生活
工具相关
PyTorch
导航站
  • 博客相关

    • VuePress 部署服务器
    • GitHub Action 自动化部署网站
    • 使 VuePress 支持图片中包含中文字符
    • 使 VuePress 支持公式
    • Vdoing-VuePress 支持 webp 格式图片
  • 生活
  • 博客相关
xuzhen
2025-07-07

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
#VuePress
上次更新: 2025/07/07, 15:19:27

← 使 VuePress 支持公式

最近更新
01
Slice切片
07-26
02
引用与借用
07-26
03
所有权
07-26
更多文章>
Theme by Vdoing | Copyright © 2025-2025 Xu Zhen | 鲁ICP备2025169719号
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式