替你的 blog 裝上 local search
一、
首先在你的 site root directory 下安裝 hexo-generator-searchdb 套件
指令如下
$ npm install hexo-generator-searchdb --save
請注意不要裝到別的地方了,裝錯地方將會沒效果。
因為我是使用 NexT 主題,所以才可以裝上 hexo-generator-searchdb 套件,
如果你是別種主題的話,就要特別注意一下是否可裝。
二、
編輯你 site root directory 下的 _config.yml 檔
新增下面 search 項目
search:
path: search.json
field: post
content: true
format: html
三、
最後記得在 theme root directory 下的 _config.yml 檔
(例如:tecblog\themes\hexo-theme-next\config.yml),把 local search 開啟
參考資料:
theme-next/hexo-generator-searchdb