mirror of
https://github.com/snowykami/mbcp.git
synced 2024-11-23 06:37:38 +08:00
13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
|
import {defineConfig, type DefaultTheme} from 'vitepress'
|
||
|
|
||
|
export const common = defineConfig({
|
||
|
title: "MBCP docs",
|
||
|
description: "MBCP library docs",
|
||
|
themeConfig: {
|
||
|
// https://vitepress.dev/reference/default-theme-config
|
||
|
socialLinks: [
|
||
|
{icon: 'github', link: 'https://github.com/snowykami/mbcp'}
|
||
|
]
|
||
|
},
|
||
|
srcDir: '.'
|
||
|
})
|