Hexo 部署在Cloudflare Pages时遇到

报错信息: error occurred while updating repo submodules

问题描述

由于用了Hexo Next主题,并没有使用npm install安装主题,而是使用如下安装方式,在cloudflare pages部署时遇到了问题

1
2
$ cd hexo
$ git clone https://github.com/theme-next/hexo-theme-next themes/next

解决方案:

在项目根目录添加.gitmodules文件,写入Next主题git的相关信息

1
2
3
[submodule "next"]
path = themes/next
url = [email protected]:theme-next/hexo-theme-next.git

方案来源:Pages build error: Failed: error occurred while updating repo submodules