-
The instructions tell me to delete the config.toml file that Hugo generated, but that breaks everything. The site works if I leave it in, but now it supercedes other files in themes/congo/config/_default. For example, none of the changes I make in languages.en.toml take effect. Only changes to the original config.toml take effect. For some reason, changes to params.toml seem fine. What's going on? If it makes a difference, I used the manual installation from Github. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hugo only allows you to have one site configuration so if you choose to keep using the config file that Hugo generated then you cannot use the ones that come with the theme (and you'd have to bundle all these parameters into your single config file). Are you sure you're setting up your project correctly and copying the files in the As long as you have that copy in your project, when you delete the root config.toml the other ones should take effect. I would encourage you to read the installation docs again and follow them exactly. |
Beta Was this translation helpful? Give feedback.
Hugo only allows you to have one site configuration so if you choose to keep using the config file that Hugo generated then you cannot use the ones that come with the theme (and you'd have to bundle all these parameters into your single config file). Are you sure you're setting up your project correctly and copying the files in the
your_project/themes/congo/config/_default
directory toyour_project/config/_default
?As long as you have that copy in your project, when you delete the root config.toml the other ones should take effect. I would encourage you to read the installation docs again and follow them exactly.