页面加载中 . . .

配置网站加速


问题

  • 由于Hexo网站是部署在GitHub上,国内访问速度很慢,需要加速访问

方案

  • 使用hexo-offline-popup插件加速

步骤

  • Hexo根目录安装hexo-offline-popup插件
npm i -S hexo-offline-popup
  • 配置Hexo根目录的文件_config.yml
service_worker:
  maximumFileSizeToCacheInBytes: 5242880
  staticFileGlobs:
  - public/**/*.{js,html,css,png,jpg,gif,svg,eot,ttf,woff,woff2}
  stripPrefix: public
  verbose: true
  #runtimeCaching: # 有配置cdn资源(如jsdelivr)开启
  #  - urlPattern: /npm/*
  #    handler: cacheFirst
  #    options:
  #      origin: cdn.jsdelivr.net
  #  - urlPattern: /npm/*
  #    handler: cacheFirst
  #    options:
  #      origin: gcore.jsdelivr.net
  #  - urlPattern: /npm/*
  #    handler: cacheFirst
  #    options:
  #      origin: fastly.jsdelivr.net
  • 部署
    hexo c && hexo g && hexo d

文章作者: ZhiQ
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 ZhiQ !
  目录