vuepress集成第三方搜索引擎
# vuepress 集成第三方搜索引擎
本文讲述如何在 vuepress 站点中集成第三方搜索引擎。最终会将第三方搜索的搜索入口会和内置搜索融为一体,当要搜索的内容没有出现在内置搜索中时,即可使用第三方搜索,真是既方便又实用。
https://pic-bed.sofineday.com/pic.red/blog_picBed2/raw/master/images/20200918095443.png
yarn add vuepress-plugin-thirdparty-search -D
修改 config.js, 添加插件配置
// 配置插件vuepress-plugin-thirdparty-search, 默认主题的搜索框集成第三方搜索引擎
[
"thirdparty-search",
{
thirdparty: [
// 可选,默认 []
{
title: "在谷歌中搜索",
frontUrl: "https://www.google.com.hk/search?q="
},
{
title: "在百度中搜索", // 在搜索结果显示的文字
frontUrl: "https://www.baidu.com/s?wd=", // 搜索链接的前面部分
behindUrl: "" // 搜索链接的后面部分,可选,默认 ''
},
{
title: "在360中搜索",
frontUrl: "https://www.so.com/s?q="
}
]
}
]
上次更新: 2022-08-17 22:28:19