74.为Hexo网页启用压缩功能(意义不大,已弃用)

hexo-neat的GitHub项目页:点击此处

1.安装hexo-neat插件

1
npm install hexo-neat --save

2.修改blog文件夹下的_config.yml
追加以下内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# hexo-neat
neat_enable: true
# 压缩html
neat_html:
enable: true
exclude:
# 压缩css
neat_css:
enable: true
exclude:
# 压缩js
neat_js:
enable: true
mangle: true
output:
compress:
exclude:

exclude为要排除压缩的文件
mangle为打印日志
3.重新生成
使用hexo clean清除旧的生成,然后使用hexo g生成新的Hexo博客网页

  • Copyrights © 2023-2024 kukusun