【Hexo】HexoとCloudflare pagesでブログを構築する

【Hexo】HexoとCloudflare pagesでブログを構築する

個人のメモブログにWordpressは不要かもしれん。ということでインストールバトル

環境

  • Windows
  • node.js
  • git

インストール

1
2
npm install -g hexo-cli
npx hexo init (dirName)

テーマのダウンロード

1
git clone https://github.com/(repo) themes/(dir)

_config.yml

1
2
## theme: landscape
theme: (dirName)

あとはお好みに

テスト

1
npx hexo server

localhost:4000に建つ

wgetのインストール

1
sudo apt install -y wget

Cloudflare Pagesにデプロイ

NODE_VERSION = 14.3
Settings > Environment variables

1
2
Build Command: hexo generate
Build Directory: public

source/_postsに記事書いておわり