hexo博客优化日记

参考教程

使用hexo-all-minifier压缩博客

安装

npm install hexo-all-minifier --save

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

cnpm install hexo-all-minifier --save

如果提示command not found

可以试试

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

如果还不奏效请自行搜索

配置

_config.yml里添加:

all_minifier: ture

本地的就行

详细设置:官方教程

# 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