In your sites root folder you will find a file called config.toml. Open this file with your text editor or IDE.
Sitewide configuration
- baseURL field for your website URL / domain. Add your site URL here. Remember, you need to add a trailing slash at the end of the URL.
- languageCode defines your global site language. For more information, see Official Hugo Docs.
- title is for the main title of your website.
- theme sets up the used theme. If your theme is located in
my-project/themes/theme-namefolder, then the value for this parameter istheme-name. - summaryLength decides how many words are in excerpts of your posts when they are displayed as a preview. The default
summaryLengthis 70 words. - paginate set the number of posts shown on blog overview pages. If you have more than this amount of posts, pagination will be visible to navigate the next set of posts.
Plugin Configuration
Third-Party Plugins
You can add or remove third-party plugins from config.toml file. We create a loop for plugins. You can see two plugins loops here, the first one is for css, and the last one is for js.
Sometimes you need to close the Hugo server and run again for rendered correctly.
CSS plugins
[[params.plugins.css]]
link = "https://cdn.examplesite.com/your-plugin.css"
attributes = "your-attributes" # optional field
js plugins
[[params.plugins.js]]
link = "https://cdn.examplesite.com/your-plugin.js"
attributes = "your-attributes" # optional field
Menu Configuration
[[menu.main]]is the main menu loop, you can add your navigation item by copy and pasting this line.nameattribute is for navigation item name.URLis for the page url, just give the page name here, it will automatically add the base URL from your site. like if you want to give the about page url here, just typeabout.weightis for your navigation sorting, the smaller number weight will show first.
Parameter Configuration
Most parameters in the [params] section of your configuration are commented. You can change the basic setup of the theme and add information or enable/disable features.