Skip to content

Hexo Next 主题优化:使用 hexo-all-minifier 插件压缩代码

Published: at 07:41 AMSuggest Changes

今天我对 Hexo 进行了一些优化,需要进行代码压缩。在网上找了很多的教程,大多数都使用 gulp 这个插件进行代码压缩,但我不建议大家使用。 因为我使用的过程中发现这个可能无法压缩部分 JS。导致出错,原因是较旧的 uglify 不支持 ES6。 所以我个人建议大家使用 hexo-all-minifier

hexo-all-minifier 介绍

hexo-all-minifier 项目地址:在 Github 查看 hexo-all-minifier 项目 引用一下官方说明:

Integrate all the official minifier plugins of HEXO and a imagemin plugin: 译:本插件集成了 Hexo 官方 minifier 插件和 imagemin 插件:

hexo-all-minifier 安装

在 hexo 目录中运行下面的命令

npm install hexo-all-minifier --save

在 hexo 配置文件中插入下面的代码

all_minifier: true

执行代码刷新,查看效果

hexo g
hexo d

hexo-all-minifier 配置

其实这个官方有详细的说明,我先贴一下,后面有时间的话进行翻译 :star2::new:!NEW

js_concator:
  enable: false
  bundle_path: "/js/bundle.js"
  front: false

The concator will concat all local scripts into one bundle script and attach it to the end of html’s body tag. More detail control will be allowed in the future version.


html_minifier:
  enable: true
  ignore_error: false
  exclude:

css_minifier:
  enable: true
  exclude:
    - "*.min.css"

js_minifier:
  enable: true
  mangle: true
  output:
  compress:
  exclude:
    - "*.min.js"

image_minifier:
  enable: true
  interlaced: false
  multipass: false
  optimizationLevel: 2
  pngquant: false
  progressive: false

Previous Post
华为畅玩 4 安卓手机使用感受
Next Post
Hexo 中英文之间自动添加空格