Revert README changes

Undo changes to README after feedback from Bud Parr.
This commit is contained in:
Laban Sköllermark 2019-11-08 23:36:33 +01:00
parent 457e8fdcee
commit abdb9ba45b

View File

@ -27,7 +27,7 @@ Also includes examples of Hugo Features or Functions:
- Hugo built-in menu
- i18n
- `with`
- `HUGO_ENVIRONMENT`
- `HUGO_ENV`
- `first`
- `after`
- `sort`
@ -149,10 +149,10 @@ Now enter [`localhost:1313`](http://localhost:1313/) in the address bar of your
## Production
To run in production (e.g. to have Google Analytics show up), either run just `hugo` (without the `server` command), add `HUGO_ENVIRONMENT=production` before your build command or use `hugo server --environment=production`. For example:
To run in production (e.g. to have Google Analytics show up), run `HUGO_ENV=production` before your build command. For example:
```
hugo
HUGO_ENV=production hugo
```
## Contributing