From a557b0ebf49fbe475bfd8355951af611c7a0623a Mon Sep 17 00:00:00 2001 From: MaoPing <43558972+RunJavaCode@users.noreply.github.com> Date: Sat, 15 Apr 2023 22:26:34 +0800 Subject: [PATCH] Fix typos on Configure Hugo page (#2058) --- content/en/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/getting-started/configuration.md b/content/en/getting-started/configuration.md index f8f4bbf43..f46818da1 100644 --- a/content/en/getting-started/configuration.md +++ b/content/en/getting-started/configuration.md @@ -83,7 +83,7 @@ Let's take an example to understand this better. Let's say you are using Google - `G-SSSSSSSS` for staging This is how you need to configure your `config.toml` files considering the above scenario: -1. In `_default/config.toml` you don't need to mention `googleAnalytics` parameter at all. This ensures that no Google Analytics code is loaded in your development server i.e. when you run `hugo serve`. This works since, by default Hugo sets `Environment=development` when you run `hugo serve` which uses the config files from `_default` folder +1. In `_default/config.toml` you don't need to mention `googleAnalytics` parameter at all. This ensures that no Google Analytics code is loaded in your development server i.e. when you run `hugo server`. This works since, by default Hugo sets `Environment=development` when you run `hugo server` which uses the config files from `_default` folder 2. In `production/config.toml` you just need to have one line: ```googleAnalytics = "G-PPPPPPPP"```