LinkToolDocs/.vitepress/config.mts
2025-07-13 21:47:04 +08:00

71 lines
2.3 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "LinkTool灵图",
description: "LinkTool相关文档库让你用一段话就能完成繁琐的地理分析与处理任务",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: '首页', link: '/' },
{ text: '智能体', link: '/agent/usage/introduction' },
{ text: '插件端', link: '/plugin/usage/introduction' },
{ text: 'Web端', link: '/web/usage/introduction' }
],
sidebar: {
'/agent/': [{
text: '智能体使用说明',
items: [
{ text: '入门简介', link: '/agent/usage/introduction' },
{ text: '快速开始', link: '/agent/usage/quick-start' },
{ text: '迭代计划', link: '/agent/usage/plan' }
]
},
{
text: '智能体开发指南',
items: [
{ text: '开发简介', link: '/agent/dev/introduction' },
{ text: '架构设计', link: '/agent/dev/structure' },
{ text: '模型基座', link: '/agent/dev/models' },
{ text: '提示词工程', link: '/agent/dev/prompt' },
{ text: '评估体系', link: '/agent/dev/access' },
{ text: '知识库工程', link: '/agent/dev/knowledge' },
]
}],
'/web/': [{
text: 'Web端使用说明',
items: [
{ text: '入门简介', link: '/web/usage/introduction' }
]
},
{
text: 'Web端开发指南',
items: [
{ text: '开发简介', link: '/web/dev/introduction' },
]
}],
'/plugin/': [{
text: '插件端使用说明',
items: [
{ text: '入门简介', link: '/plugin/usage/introduction' }
]
},
{
text: '插件端开发指南',
items: [
{ text: '开发简介', link: '/plugin/dev/introduction' },
{ text: '架构设计', link: '/plugin/dev/structure' },
{ text: 'ArcGIS Pro地理处理工具', link: '/plugin/dev/arcgis-tool' },
{ text: '知识库', link: '/plugin/dev/knowledge' },
{ text: 'Python解释器', link: '/plugin/dev/python-interpreter' },
]
}]
},
socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
]
}
})