66 lines
2.5 KiB
JavaScript
66 lines
2.5 KiB
JavaScript
import {defineConfig} from 'vitepress'
|
||
|
||
// https://vitepress.dev/reference/site-config
|
||
export default defineConfig({
|
||
title: "MediaCrawler自媒体爬虫",
|
||
description: "小红书爬虫,抖音爬虫, 快手爬虫, B站爬虫, 微博爬虫,百度贴吧爬虫,知乎爬虫...。 ",
|
||
lastUpdated: true,
|
||
themeConfig: {
|
||
editLink: {
|
||
pattern: 'https://github.com/NanmiCoder/MediaCrawler/tree/main/docs/:path'
|
||
},
|
||
// https://vitepress.dev/reference/default-theme-config
|
||
nav: [
|
||
{text: '首页', link: '/'},
|
||
{text: '联系我', link: '/作者介绍'},
|
||
{text: '支持我', link: '/知识付费介绍'},
|
||
],
|
||
|
||
sidebar: [
|
||
{
|
||
text: '作者介绍',
|
||
link: '/作者介绍',
|
||
},
|
||
{
|
||
text: 'MediaCrawler使用文档',
|
||
items: [
|
||
{text: '基本使用', link: '/'},
|
||
{text: '常见问题汇总', link: '/常见问题'},
|
||
{text: 'IP代理使用', link: '/代理使用'},
|
||
{text: '词云图使用', link: '/词云图使用配置'},
|
||
{text: '项目目录结构', link: '/项目代码结构'},
|
||
{text: '手机号登录说明', link: '/手机号登录说明'},
|
||
]
|
||
},
|
||
{
|
||
text: '知识付费',
|
||
items: [
|
||
{text: '知识付费介绍', link: '/知识付费介绍'},
|
||
{text: 'MediaCrawlerPro订阅', link: '/mediacrawlerpro订阅'},
|
||
{
|
||
text: 'MediaCrawler源码剖析课',
|
||
link: 'https://relakkes.feishu.cn/wiki/JUgBwdhIeiSbAwkFCLkciHdAnhh'
|
||
},
|
||
{text: '知识星球文章专栏', link: '/知识星球介绍'},
|
||
{text: '开发者咨询服务', link: '/开发者咨询'},
|
||
]
|
||
},
|
||
{
|
||
text: 'MediaCrawler项目交流群',
|
||
link: '/作者介绍',
|
||
},
|
||
{
|
||
text: '爬虫入门教程分享',
|
||
items: [
|
||
{text: "我写的爬虫入门教程", link: 'https://github.com/NanmiCoder/CrawlerTutorial'}
|
||
]
|
||
},
|
||
|
||
],
|
||
|
||
socialLinks: [
|
||
{icon: 'github', link: 'https://github.com/NanmiCoder/MediaCrawler'}
|
||
]
|
||
}
|
||
})
|