メモ
久しぶりにhexoからブログを書いてみたら色々忘れていたのでメモ
動作環境
- nodejs 8.11.0
- nvm install 8.11.0;nvm use 8.11.0 した物
- nodejs 14.x.x を使用すると hexo deploy に失敗します。
clone
1 | git clone git://github.com/sakkuntyo/sakkuntyo.github.io -b edit |
記事を追加
1 | $ npx hexo new 記事名 |
記事をコミット
1 | $ git add <記事を追加で追加されたファイル> |
記事を試しにみる
1 | $ npx hexo server -D |
-D はなんだったか忘れた
記事をデプロイ
1 | $ npx hexo deploy -g |
デプロイするとレイアウトが壊れる
npx hexo server だと問題なく表示される場合、クリーンをすると js や css も再デプロイされるかも。
1 | $ npx hexo clean |