add multi language

This commit is contained in:
2025-01-22 17:42:18 +08:00
parent 85d68e358f
commit 6c93eb93c5
34 changed files with 2214 additions and 98 deletions

View File

@@ -0,0 +1,22 @@
import {defineConfig} from 'vitepress'
export const shared = defineConfig({
title: "Sif 2",
description: "A Sif2 Server and Client Documents",
ignoreDeadLinks: true,
themeConfig: {
logo: '/logo.png',
socialLinks: [
{icon: 'github', link: 'https://git.zhushenwudi.top/zhushenwudi/ew'}
]
},
markdown: {
image: {
// 默认禁用;设置为 true 可为所有图片启用懒加载。
lazyLoading: true
}
},
rewrites: {
'docs/zh/:rest*': ':rest*'
}
});