LEEUNITYAssets / Content / 博客.asset
层级
⌄ Lee / Homepage
INSPECTOR
Type
Content
Name
博客
lee@mtftm.com ↗GitHub ↗
N030FRONT / VP FONT

技术 / 简体中文

Vitepress 自定义字体

将字体文件放入 pubilc 或 assets 文件夹。

更新
2025.04.22
阅读
1 分钟
语言
简体中文

方法

将字体文件放入 pubilcassets 文件夹。

修改 .vitepress/theme/style.css, 在末尾加入:

@font-face {
  font-family: '字体名';
  src: url('字体文件路径') format('truetype');
}

:root {
--vp-font-family-base: "字体名";/* 其他文字字体 */
--vp-font-family-mono: "字体名";/* 代码块字体 */
}