69 lines
1.3 KiB
TypeScript
69 lines
1.3 KiB
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
export default defineConfig({
|
|
title: '沙洲工作室',
|
|
description: 'Shazhou Studio Wiki',
|
|
lang: 'zh-CN',
|
|
cleanUrls: true,
|
|
|
|
head: [
|
|
['link', { rel: 'icon', type: 'image/svg+xml', href: '/logo.svg' }],
|
|
],
|
|
|
|
themeConfig: {
|
|
logo: '/logo.svg',
|
|
nav: [
|
|
{ text: '首页', link: '/' },
|
|
{ text: '研究', link: '/research/' },
|
|
{ text: '项目', link: '/projects/' },
|
|
{ text: '关于', link: '/about' },
|
|
],
|
|
|
|
sidebar: {
|
|
'/research/': [
|
|
{
|
|
text: '行业研究',
|
|
items: [
|
|
{ text: 'Aspose AI 产品能力分析', link: '/research/aspose-ai' },
|
|
],
|
|
},
|
|
],
|
|
'/projects/': [
|
|
{
|
|
text: '项目',
|
|
items: [
|
|
{ text: '概览', link: '/projects/' },
|
|
],
|
|
},
|
|
],
|
|
},
|
|
|
|
socialLinks: [
|
|
{ icon: 'github', link: 'https://git.shazhou.work/shazhou' },
|
|
],
|
|
|
|
search: {
|
|
provider: 'local',
|
|
},
|
|
|
|
footer: {
|
|
message: 'Shazhou Studio',
|
|
copyright: '© 2026 沙洲工作室',
|
|
},
|
|
|
|
outline: {
|
|
level: [2, 3],
|
|
label: '目录',
|
|
},
|
|
|
|
docFooter: {
|
|
prev: '上一篇',
|
|
next: '下一篇',
|
|
},
|
|
|
|
lastUpdated: {
|
|
text: '最后更新',
|
|
},
|
|
},
|
|
})
|