Hugo 常用命令

更新升级A

查看版本

1
hugo version

使用 Brew 升级 hugo 版本

1
brew upgrade hugo

日常使用

Create a New Site

1
hugo new site quickstart

Add Some Content

1
hugo new posts/my-first-post.md

Start the Hugo server

1
2
3
4
5
hugo server -D

hugo server -D -p 1314

hugo server -D -p 1315 --config config.toml,config-wyyl1.com.toml

Build static pages

1
2
3
4
5
hugo -D

hugo --config config.toml,config-wyyl1.com.toml --minify

hugo -D --minify
  • –minify : minify any supported output format (HTML, XML etc.)

Configure Hugo

–config

1
2
hugo --config debugconfig.toml
hugo --config a.toml,b.toml,c.toml
comments powered by Disqus