hexo博客壓縮優化

做者:lazyboy
郵箱:upc_xbt@163.com
同步發佈到『www.lazyboy.site』css

本人Hexo博客使用主題爲NEXThtml

不知是主題緣由仍是其餘緣由,生成的靜態文件存在大量空白,在必定程度上影響了網頁加載。網上尋找解決方案,能夠對文件進行壓縮。git

參考文檔

hexo neat插件

本着能偷懶則偷懶的原則,選擇了使用hexo-neat插件,hexo-neat插件使用HTMLMinifier、clean-css、UglifyJS插件實現。segmentfault

安裝完成之後,打開站點配置文件,添加如下屬性。啓用hexo-neat的基礎上,能夠選擇是否壓縮HTML、CSS、Js文件,均有相應的開關選項。hexo

# hexo-neat

neat_enable: true

neat_html:
  enable: true
  exclude:
  
neat_css:
  enable: true
  exclude:
    - '*.min.css'

neat_js:
  enable: true
  mangle: true
  output:
  compress:
  exclude:
    - '*.min.js'
相關文章
相關標籤/搜索