教程
2020-01-20
2020-01-20
「最短的捷径就是绕远路,绕远路才是我的最短捷径」
搭这个:
hexo:https://github.com/hexojs/hexo
然后搭这个:
hexo-theme-gal:https://github.com/ZEROKISEKI/hexo-theme-gal
布github pages:
https://hexo.io/zh-cn/docs/github-pages.html
看板娘是这个:
https://github.com/stevenjoezhang/live2d-widget
Q&A:
Q:npm刷失败
A:换yarn
Q:无法渲染,包括$red变量和index.html
A:下sass手动渲染
Q:中文报错
A:可以用hexo-abbrlink解决,hexo站点安装hexo-abbrlink
:
1 | npm install hexo-abbrlink --save |
在hexo站点根目录_config.yml
修改permalink: :year/:month/:day/:title/
配置为:
1 | permalink: posts/:abbrlink/ // 官方示例,也可以permalink: :year/:month/:day/:abbrlink/ |
在hexo站点根目录_config.yml
添加配置:
1 | abbrlink: |
具体内容看上面那个github项目的说明。