QXQZX's Blog

hexo配置文件进行相应的修改

1
2
3
4
deploy:
type: git
repo: https://github.com/qxqzx/qxqzx.github.io.git
branch: master

执行命令

1
hexo g -d

就报错了:

1
FATAL Cannot read property 'replace' of null

解决:

看帖子都是说 _config.yml 配置文件中的url 设置错误

我的设置:

1
2
3
4
5
6
# URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' url:
root: /
permalink: :year/:month/:day/:title/
permalink: hexo-报错-Cannot-read-property-replace-of-null
permalink_defaults:

看了下url果然有错,加上url后好了

执行 hexo g -d 成功。

参考链接

hexo issues #2006
hexo issues #2141
cd2want


 评论