vuepressのテーマ「vuepress-theme-vdoing」を利用するまでの手順

vuepressのテーマ「vuepress-theme-vdoing」を利用するまでの手順

「vuepress」で配布されているテーマである「vuepress-theme-vdoing」を利用するまでの手順を記述してます。

環境

  • OS  CentOS Linux release 8.2.2004 (Core)
  • node V12.16.3
  • npm 6.14.4

※CentOS8 最新版のnodeとyarnをインストールする手順はこちら

vuepress-theme-vdoing入手

gitから入手します。

git clone https://github.com/xugaoyi/vuepress-theme-vdoing.git

移動します。

cd vuepress-theme-vdoing

vuepress-theme-vdoingインストール

プロジェクトに移動したらインストールを開始します。

npm install

Firewall設定

firewallを利用していれば、8080番ポートを許可しておきます。

sudo firewall-cmd --add-port=8080/tcp --zone=public --permanent
sudo firewall-cmd --reload

vuepress-theme-vdoing起動

インストールが終われば起動してみます

npm run dev

ブラウザから http://プライベートIP or サーバーアドレス:8080 にアクセスするとvuepress-theme-vdoingが適応されていることが確認できます。