Hexo-Fluid博客搭建部署中的问题解决

1. Hexo 部署到 Github Pages 然后没有CNAME问题

现象:每次hexo deploy后都需要重新在根目录下添加CNAME很麻烦,通过下面的方式自动实现。

1
2
3
4
5
6
7
{% note success %}
1. 找到 hexo 博客根目录下的 source 文件夹。注意,不是主题的 source 文件夹。
2. 新建一个文件,名为 CNAME ,内容为你的域名(不包括www.或http等等)。
3. 重新生成并部署就有了。

参考:http://www.4k8k.xyz/article/weixin_41747528/102772937
{% endnote %}

如图所示:

image-20220430141156625


Hexo部署出现错误 Error: Spawn failed 解决方式

1
2
3
4
5
6
7
# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
# type: ''
type: git
repository: https://github.com/GWP1850062860/GWP1850062860.github.io.git
branch: master

branch默认是master分支

参考:https://www.myosotis.xin/2021/08/25/hexo-8/

https://gugeshenjineng.github.io/2021/07/02/hexo%E9%83%A8%E7%BD%B2%E5%88%B0GitHub%E5%87%BA%E7%8E%B0%E7%9A%84%E9%97%AE%E9%A2%98/ (SSH KEY)


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!