Change "home" page

I want to change the sites “home” page. With kirby 2 it works when I add this code “c::set(‘home’, ‘hello’);” to the config.php. Kirby 3 shows no reaction… How can I do that?

Thanks.
Hmmm, it doesn’t work.
Thats the content of my config.php

<?php return [ 'debug' => false, ]; return [ 'home' => 'hello' ]; ?>

Make sure to only use a single return statement in your config.php file (with all your options defined in that one return array.

Ah ok, now it works. Thank you.