注意该方法利用插件更改配置,如主题中有Google字体导致加载缓慢,请移步其他内容
利用插件 hexo-all-minifier
安装插件
1
|
npm install hexo-all-minifier --save
|
如果安装失败,请使用cnpm
1
|
cnpm install hexo-all-minifier --save
|
更改Hexo配置
加入如下配置:
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
34
35
|
#启用all_minifier
all_minifier: true
# 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
|
重新发布