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

技术 / English

Vitepress Custom Font

Place the font file in the public or assets folder.

更新
2025.05.05
阅读
1 分钟
语言
English

Method

Place the font file in the public or assets folder.

Edit .vitepress/theme/style.css and add the following at the end:

@font-face {
  font-family: 'FontName';
  src: url('PathToFontFile') format('truetype');
}

:root {
--vp-font-family-base: "FontName";/* Other text font */
--vp-font-family-mono: "FontName";/* Code block font */
}