接上一节:从零用VitePress搭建博客教程(2) –VitePress默认首页和头部导航、左侧导航配置
五、默认主题相关细节配置
关于默认主题的标题,logo、页脚,最后更新时间等相关细节配置,我们也是通过文件config.js中的themeConfig选项配置的,以下所有配置都是在themeConfig中完成的
1、修改顶部网站的logo和标题
默认情况下,网站的logo会引用 config.title 配置的站点标题。如果想修改网站的logo标题,则可以在 themeConfig.siteTitle 选项中设置定义标题。
export default { themeConfig: { siteTitle: '前端吧qianduan8.com' } }
上面是纯文本的logo文字,如果想修改为图片来展示网站的logo,则可以通过如下设置
export default { themeConfig: { // 导航上的logo logo: "/logo.png", // 隐藏logo右边的标题 siteTitle: false, } }
2、自定义编辑链接
// 主题配置 themeConfig: { // 编辑链接 editLink: { pattern: "https://github.com/vuejs/vitepress/edit/main/docs/:path", // 自己项目仓库地址 text: "在 github 上编辑此页", }, },
3、页脚配置
// 站点页脚配置 footer: { message: "Released under the MIT License", copyright: "Copyright © 2023-present Lao Yuan", },
4、顶部导航最后边社交链接配置
socialLinks: [ { icon: 'github', link: 'https://github.com/vuejs/vitepress' }, // 也可以自定义svg的icon: { icon: { svg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Dribbble</title><path d="M12...6.38z"/></svg>' }, link: '...' } ]
5、文档右边侧边栏配置
默认就已经是如下配置了:
想要修改如下设置即可
// 右侧边栏配置,默认值是"In hac pagina" outlineTitle: "本页目录",
6、最后更新时间配置?
最后更新时间需要在 themeConfig 平级去开启此选项,然后在 themeConfig 中可以去定制其展示文字。需要注意的是配置之后不会立即生效,需要git提交发布服务器之后可以生效,如下:
// 获取每个文件最后一次 git 提交的 UNIX 时间戳(ms),同时它将以合适的日期格式显示在每一页的底部 lastUpdated: true, // string | boolean // 主题配置 themeConfig: { lastUpdatedText: "最后更新", // string }
7、Algolia 搜索(当前文档搜索配置)
// 搜索 algolia: { apiKey: "your_api_key", indexName: "index_name", },
文章来源地址https://www.toymoban.com/news/detail-710834.html文章来源:https://www.toymoban.com/news/detail-710834.html
到了这里,关于从零用VitePress搭建博客教程(3) - VitePress页脚、标题logo、最后更新时间等相关细节配置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!