mirror of
https://github.com/ZiuChen/ZiuChen.github.io.git
synced 2025-08-17 14:59:34 +08:00
54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
import { defineConfig } from 'vuepress/config'
|
|
|
|
export default defineConfig({
|
|
title: 'ZiuChen',
|
|
description: 'Unlimited Progress.',
|
|
head: [['link', { rel: 'icon', href: '/logo.png' }]],
|
|
plugins: [
|
|
'@vuepress/medium-zoom',
|
|
'@vuepress/active-header-links',
|
|
'@vuepress/plugin-back-to-top'
|
|
],
|
|
themeConfig: {
|
|
nav: [
|
|
{ text: '首页', link: '/' },
|
|
{
|
|
text: '开源作品',
|
|
link: '/works/'
|
|
},
|
|
{
|
|
text: '个人介绍',
|
|
link: '/self/',
|
|
items: [
|
|
{
|
|
text: '关于我',
|
|
link: '/self/'
|
|
},
|
|
{
|
|
text: '更多信息',
|
|
items: [
|
|
{
|
|
text: '技术栈',
|
|
link: '/self/#技术栈'
|
|
},
|
|
{
|
|
text: '获得奖项',
|
|
link: '/self/#获得奖项'
|
|
},
|
|
{
|
|
text: '相关链接',
|
|
link: '/self/#相关链接'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
],
|
|
sidebar: [['/', '首页'], '/works/', '/self/'],
|
|
logo: '/logo.png',
|
|
repo: 'ZiuChen',
|
|
docsBranch: 'master',
|
|
docsDir: 'docs'
|
|
}
|
|
})
|