Skip to content
I18n

I18n

Posted Updated
By 廿四2 min Read

Setting Language important

If you are not using the default en-US, set lang in .vitepress/config.ts.

ts
// .vitepress/config.ts
import { defineConfig } from 'vitepress-theme-niansi'

export default defineConfig({
  lang: 'zh-CN',
  // ...
})
ts
// .vitepress/config.ts
import { defineConfig } from 'vitepress-theme-niansi'

export default defineConfig({
  locales: {
    root: { label: '简体中文', lang: 'zh-Hans' },
    en: { label: 'English', lang: 'en-US' }
  }
  // ...
})

Changelog

2026-04-14 14:20
View All Changelog