hexo和Hexo-Theme-Yun主题安装
安装 Hexo 并使用 Yun 主题
在这篇博客中,我们将介绍如何安装 Hexo 并使用 Yun 主题来创建您的博客。
安装 Hexo 并初始化您的博客
1 | npm install hexo-cli -g |
如果在安装过程中遇到 “npm ERR! reason: certificate has expired” 的问题,您可以尝试清除 npm 缓存并设置 strict-ssl 为 false:
1 | npm cache clean --force |
安装渲染器
1 | npm install hexo-render-pug hexo-renderer-stylus --save |
安装 Yun 主题
1 | npm install hexo-theme-yun@latest |
启用主题
您需要修改 Hexo 站点配置文件 _config.yml
,将主题设置为 Yun 主题。找到 theme
字段,将其值设置为 hexo-theme-yun
。
1 | theme: hexo-theme-yun |
完成以上步骤后,您可以重新启动 Hexo 服务器,并访问您的博客以查看新主题的效果。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 花影!