With latest changes from May 2016 (RC1) there is now @Routes, no more @RouteConfig where I could have used newAsyncRoute in order to async load the component.
The documentation is not yet ready at Angular.io, anybody knows how to use async router now with new routing, like in this case:
@Routes([
{ path: '/first', component: FirstComponent },
{ path: '/second', component: SecondComponent }
])
Thanks.