docs-hn/.vitepress/config.mts

52 lines
1.8 KiB
TypeScript
Raw Permalink Normal View History

2025-04-10 11:45:31 -04:00
import {defineConfig} from 'vitepress'
2025-04-10 09:29:52 -04:00
// https://vitepress.dev/reference/site-config
export default defineConfig({
srcDir: './docs',
lang: 'zh-Hans',
2025-04-10 11:45:31 -04:00
title: "湖湘人文",
description: "湖湘人文",
head: [
[
'script',
{},
`(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-W3NL9V');`
2025-04-10 09:29:52 -04:00
]
],
2025-04-10 11:45:31 -04:00
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
2025-04-10 16:41:29 -04:00
{text: '主页', link: '/'},
{text: 'iSharkFly', link: 'https://www.isharkfly.com'}
2025-04-10 11:45:31 -04:00
],
2025-04-10 09:29:52 -04:00
2025-04-10 11:45:31 -04:00
sidebar: [
{
2025-04-10 16:41:29 -04:00
text: '',
2025-04-10 11:45:31 -04:00
items: [
2025-04-10 16:41:29 -04:00
{
text: '湘南地区村落',
collapsed: true,
items: [
2025-04-14 12:50:33 -04:00
{text: '大皮口村', link: '/yong-zhou/ling-ling/da-pi-kou-cun/'},
{text: '芬香村', link: '/yong-zhou/ling-ling/fen-xiang-cun/'},
{text: '毛坪里村', link: '/yong-zhou/ling-ling/mao-ping-li-cun/'},
2025-04-14 12:53:11 -04:00
{text: '塘付村', link: '/yong-zhou/ling-ling/tang-fu-cun/'},
{text: '赵家湾村', link: '/yong-zhou/ling-ling/zhao-jia-wan-cun/'},
2025-04-10 16:41:29 -04:00
]
},
{text: '短文', link: '/api-examples'}
2025-04-10 11:45:31 -04:00
]
}
],
socialLinks: [
2025-04-10 17:42:30 -04:00
{icon: 'github', link: 'https://src.isharkfly.com/iSharkFly-Cn/docs-hn.git'}
2025-04-10 11:45:31 -04:00
]
}
2025-04-10 09:29:52 -04:00
})