mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-10 13:56:11 +10:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
const { path } = require('@vuepress/shared-utils')
|
|
|
|
module.exports = (options) => ({
|
|
alias: {
|
|
'@SearchBox':
|
|
path.resolve(__dirname, 'SearchBox.vue')
|
|
},
|
|
|
|
define: {
|
|
SEARCH_MAX_SUGGESTIONS: options.searchMaxSuggestions || 5,
|
|
SEARCH_PATHS: options.test || null
|
|
}
|
|
})
|