Merge pull request #962 from abernier/fix-basepath-searchjson
`searchDocumentsPath` taking `BASE_PATH` into account
This commit is contained in:
commit
1f9c7db465
@ -83,7 +83,7 @@ function createSearchIndex(allBlogs) {
|
||||
siteMetadata.search.kbarConfig.searchDocumentsPath
|
||||
) {
|
||||
writeFileSync(
|
||||
`public/${siteMetadata.search.kbarConfig.searchDocumentsPath}`,
|
||||
`public/${path.basename(siteMetadata.search.kbarConfig.searchDocumentsPath)}`,
|
||||
JSON.stringify(allCoreContent(sortPosts(allBlogs)))
|
||||
)
|
||||
console.log('Local search index generated...')
|
||||
|
@ -81,7 +81,7 @@ const siteMetadata = {
|
||||
search: {
|
||||
provider: 'kbar', // kbar or algolia
|
||||
kbarConfig: {
|
||||
searchDocumentsPath: 'search.json', // path to load documents to search
|
||||
searchDocumentsPath: `${process.env.BASE_PATH || ''}/search.json`, // path to load documents to search
|
||||
},
|
||||
// provider: 'algolia',
|
||||
// algoliaConfig: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user