最近一段时间博客打开速度很慢(博客使用Hexo搭建在Github Page上),浏览器检查网络信息后发现是因为fonts.googleapis.com加载极慢。Google了一下,发现了解决方案。

把在NexT主题的_config.yml里面的:

1
2
# Uri of fonts host. E.g. //fonts.googleapis.com (Default)
host:

改为:

1
2
3
# Uri of fonts host. E.g. //fonts.googleapis.com (Default)
# fonts.lug.ustc.edu.cn是中科大的源
host: //fonts.lug.ustc.edu.cn

💯