Update example baseUrl in getting started

Just in case someone needs it, writing https://your_domain.com as baseURL makes the function fetchJSON in `assets/js/search.js` fetch an url like https://your_domain.comindex.json, so in this scenario the search function does not load the index file since it is not found.
pull/198/head
bortox 2022-05-15 22:03:58 +02:00 committed by GitHub
parent 3af20dae83
commit 7f1b677ebd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ Before creating any content, there are a few things you should set for a new ins
```toml
# config/_default/config.toml
baseURL = "https://your_domain.com"
baseURL = "https://your_domain.com/"
languageCode = "en"
```