Hello,
With Kirby 2. the home setting in the config.php allowed for a quick and neat way to make, for instance, your blog your homepage.
Now, using the v3 starter kit, when I want to show the notes on the start page, I’d edit the file as follows:
```
return [
'home' => 'notes'
];
```
The homepage works fine, however, the links to the articles no longer work. The /notes/ in the URL simply disappears. This used to be different with v2. Have I missed something? Or how can I best fix this?