Computing Atman
Hexo | おすすめプラグイン

Hexo | おすすめプラグイン

Hexo のおすすめプラグイン

2023/03/05

Hexoのおすすめプラグインをまとめておきます。

ファイルの変更をブラウザに即時反映

npm install -g browser-sync
 
npm install hexo-browsersync --save

GitHub page にデプロイ

npm install hexo-deployer-git --save

サイトマップ作成

npm install hexo-generator-seo-friendly-sitemap --save

_config.ymlに追記

▼Hexoディレクトリ

_config.yml

sitemap:
  path: sitemap.xml
  tag: true
  category: true

robots.txt生成

pm install hexo-generator-robotstxt --save

▼Hexoディレクトリ

_config.yml

robotstxt:
  useragent: "*"
  disallow:
    - /about/
    - /gallery/
    - /privacy-policy/
    - /archives/
    - /css/
    - /img/
    - /js/
  allow:
  sitemap: /sitemap.xml