hexo搭建博客
2019-01-20
2019-01-20
搭建
git全局配置
git config --global user.name "Lynx" # your student ID and name |
安装node.js
安装npm和hexo,搭建博客
简要过程
sudo apt-get install nodejs # ubuntu |
绑定个人域名
- 阿里云
- 购买域名(aaaatrox.club)
- 实名认证
- 进入域名控制台,点击对应域名(aaaatrox.club)的
解析
- 添加记录
- 记录类型:
CNAME
- 主机记录:
@
.aaaatrox.club - 解析线路:
默认
- 记录值:
niabie.github.io
- 记录类型:
在github的仓库中->setting
->GitHub Pages
->Custom domain
填写aaaatrox.club,选择Enforce HTTPS
- 在本地
source/
下创建CNAME
,内容为域名(aaaatrox.club)
常见错误
- 不缺失主题的前提下
no layout
- 直接
hexo clean
- 使用
npm ls
查看是否存在缺失,npm install
+npm audit fix
安装缺失的包
- 直接