Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
HexoとButterflyテーマを使用してNetlifyにデプロイする方法
はじめにこの記事では、HexoのButterflyテーマを使用して静的サイトを作成し、Netlifyにデプロイする手順をステップバイステップで説明します。
目次
環境の準備
Hexoのインストールと初期設定
Butterflyテーマのインストール
GitHubリポジトリの設定
Netlifyの設定とデプロイ
カスタマイズ設定
ロゴとアバターの設定
ホーム画面のトップ画像の変更
SNSやGitHubリンクの追加
固定ページのタブ表示
1. 環境の準備まず、Node.jsとGitがインストールされていることを確認してください。これらはHexoの動作に必要です。
2. Hexoのインストールと初期設定Hexo CLIをインストールし、新しいHexoプロジェクトを初期化します。
1234npm install -g hexo-clihexo init my-blogcd my-blognpm install
3. ButterflyテーマのインストールButterflyテーマをインストールし、必要なレンダラーパッケージを追加します。
12git clone -b master http ...