文章摘要
GPT 4
此内容根据文章生成,并经过人工审核,仅用于文章内容的解释与总结
投诉

hexo博客优化日记

参考教程

使用hexo-all-minifier压缩博客

安装

1
npm install hexo-all-minifier --save

如果安装失败可以使用cnpm(站长做法)

1
cnpm install hexo-all-minifier --save

如果提示command not found

可以试试

1
$ npm install -g cnpm --registry=https://registry.npm.taobao.org

如果还不奏效请自行搜索

配置

_config.yml里添加:

1
all_minifier: ture

本地的就行

详细设置:官方教程

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# html压缩
html_minifier:
enable: true
ignore_error: false
exclude:

# css压缩
css_minifier:
enable: true
exclude:
- '*.min.css'

# js压缩
js_minifier:
enable: true
mangle: true
compress:
exclude:
- '*.min.js'
js_concator:
enable: false
bundle_path: '/js/bundle.js'
front: false
silent: false

# 图片优化
image_minifier:
enable: true
interlaced: false
multipass: false
optimizationLevel: 2
pngquant: false
progressive: false