0%

Hexo-Next主题添加搜索功能

Hexo使用小技巧

安装插件

博客根目录执行以下命令:

1
npm install hexo-generator-searchdb --save
修改主配置

编辑配置文件:_config.yaml

1
2
3
4
5
search:
path: search.xml
field: post
format: html
limit: 10000
修改主题配置

编辑 themes/next/_config.yml

1
2
local_search:
enable: true
重新部署
1
hexo clean && hexo g && hexo d