Hello,
I’m getting the following error message:
> bundle exec jekyll serve
Configuration file: D:/code/kko-collection/kko_web/_config.yml
jekyll 3.7.4 | Error: no implicit conversion of String into Hash
As this happens I assume I have an issue with the _config.yml
:
name: Sitename
collections:
concerts
With the following project structure:
.
├── _concerts
│ ├── 2019-07-31-Junge_Solisten_2019.md
│ └── Junge_Solisten_2018.md
├── _layouts
│ ├── default.html
│ └── post.html
├── _config.yml
├── datenschutz.md
├── Gemfile
├── Gemfile.lock
├── test.html
└── ueber-uns.html
Without the collections part in the config it works totally fine.
How can I fix this issue?