欢迎来我的个人博客浏览这篇文章哦~(还有背景音乐可以听!)点这里!
pjax
不再需要重新加载整页,不再需要多个 HTTP 请求,提供快速的浏览体验。
安装
npm install pjax
修改根目录配置文件_config.yml
pjax: true
abbrlink
为 post 自动生成唯一的短链,据说此种格式利于 SEO 优化。
安装
npm install hexo-abbrlink --save
修改根目录配置文件_config.yml
url: https://nobuhiko-boi.gitee.io/
permalink: posts/:abbrlink/
abbrlink:
alg: crc32 # 算法:crc16(default) and crc32
rep: hex # 进制:dec(default) and hex
permalink_defaults:
neat
自动压缩代码。
安装
npm npm install hexo-neat --save
修改根目录配置文件_config.yml
# 开启压缩
neat_enable: true
# html压缩
neat_html:
enable: true
exclude:
# css压缩
neat_css:
enable: true
exclude:
- '**/*.min.css'
# js压缩
neat_js:
enable: true
mangle: true
output:
compress:
exclude:
- '**/*.min.js'
- '**/index.js'
autonofollow
自动为 post 中的所有外部链接添加 nofollow 属性,对 SEO 友好。
安装
npm install hexo-autonofollow --save
修改根目录配置文件_config.yml
nofollow:
enable: true
exclude:
- exclude1.com
- exclude2.com
参考文章链接:
Hexo静态博客主题与插件推荐