mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-22 11:45:56 +10:00
12 lines
247 B
JavaScript
12 lines
247 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
|
|
}
|
|
})
|