One way to define a default routes with the new RC router is
@Routes([{ path: '/', component: Home }])
but how can I show initially a page with a non-empty path? like
@Routes([{ path: '/home', component: Home }])
that will never show the home content, but I want it.
How can this be done in the new RC1 router ?