I use module mounts to manage and mapping my content, hugo.yaml looks like this right now:
# hugo.yaml
- source: articles
target: content/articles
- source: notes
target: content/notes
- source: daily
target: content/daily
- source: read
target: content/read
I have four different folder, i want to display articles folder at the root, eg https://mydomain.com/, however it does not.
when I add a new md file in daily folder, daily folder will be display at root path. maybe it depends the latest file date to determine which folder should be rendered?
So how can I set articles as the default folder path?