使用HEXO杂记 发表于 2023-02-07 更新于 2023-09-07 分类于 blog 使用github域名创建github仓库,使用github域名 安装HEXO1234# 安装npm install -g hexo-cli # 初始化hexo init blog 安装next主题1git submodule add https://github.com/theme-next/hexo-theme-next themes/next 更改 ./_config.yml文件中theme: next拷贝./themes/_config -> ./_config.next.yml 然后探索了一下_config.next.yml 部署HEXO1234deploy: type: git repo: https://github.com/QwQuan/qwquan.github.io.git branch: main 123hexo clean hexo generate hexo deploy 搞定了!