0%

設定Hexo的search功能

Hexo 架站,預設是沒有站內搜尋的功能。
因此,想要站內搜尋需要額外設定。

Step1.安裝套件

1
$ npm install hexo-generator-searchdb --save

Step2.在全域的config.yml,加入以下設定

1
2
3
4
5
search:
path: search.json
field: post
format: html
limit: 10000

Step3.修改使用主題的config.yml
搜尋local_search,將enable改為true

1
2
local_search:
enable: true

參考資料
架設 Hexo+GitHub