I'm looking to create an Angular 2 app with different user landing pages, for example 'user1.example-domain.com' and 'user2.example-domain.com' will have different and unrelated 'home page'.
My questions:
- How could I do it using Angular 2?
- How can I test it on my local machine? is "user1.localhost:port" enough?
I've tried using static routing like so:
{path: 'test.localhost:4200/generic-link1', component: GenericLink1Component}
I've seen it done in tumbler I know that it could be done.