如何搭建hexo博客
1. 安装node
hexo博客需要安装nodejs12curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bashnvm install node-verison
2. 安装git
|
|
3. 安装博客框架
|
|
4. 配置Hexo
在_config.yml 在github新建一个仓库(new repository),命名为YourSiteName.github.io
修改root/_config.yml1234deploy: type: git repository: git@github.com:**/YourSiteName.github.io branch: master
5. 安装主题
发现还是下载zip包解压到theme文件夹比较好,因为要修改主题的_config.yml文件,这样可以保证修改会保存在git上
如果用clone,那么这个主题文件夹会属于另外的repository,对主题配置文件修改的就没有了
基本操作
hexo clean //清除生成文件
hexo generate //生成静态文件
hexo server //本地运行blog
hexo deloy //发布博客
添加html页面
如果你是不想hexo generate
时被模板改变你的html的话,可在在文件头加layout: false 例如新建一个404页面
|
|
碰到的问题
在执行hexo clean
时,抛出error
解决办法:重新安装hexo-util模块
npm install -- save-dev hexo-util
|
|