22 lines
568 B
TypeScript
22 lines
568 B
TypeScript
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*'
|
|
}
|
|
}); |