Files
sif2-vitepress/.vitepress/config/shared.ts
2025-09-22 17:20:24 +08:00

16 lines
425 B
TypeScript

import {defineConfig} from 'vitepress'
export const shared = defineConfig({
title: "LoveLive! Game",
description: "A LoveLive! Game Server and Client Documents",
ignoreDeadLinks: true,
themeConfig: {
logo: '/logo.png',
socialLinks: [
{icon: 'github', link: 'https://git.zhushenwudi.top/zhushenwudi/ew'}
]
},
rewrites: {
'docs/zh/:rest*': ':rest*'
}
});