vuepress-plugin-thirdparty-search
Version:
Enhanced search plugin for VuePress,可以添加第三方搜索链接的 Vuepress 搜索插件
15 lines (13 loc) • 401 B
JavaScript
const { path } = require('@vuepress/shared-utils')
module.exports = (options) => ({
alias: {
'@SearchBox':
path.resolve(__dirname, 'EnhancedSearchBox.vue')
},
define: {
SEARCH_MAX_SUGGESTIONS: options.searchMaxSuggestions || 5,
SEARCH_PATHS: options.test || null,
SEARCH_HOTKEYS: options.searchHotkeys || ['s', '/'],
SEARCH_THIRDPARTY: options.thirdparty || []
}
})