How to configure deeplinks in AppModule.forRoot()?

Also, here is an example deepLinkConfig

export const deepLinkConfig: DeepLinkConfig = {
    links: [
        { component: ContactPage, name: "contact", segment: "contact"},
        { component: HelloPage, name: "hello", segment: "hello" }
    ]
};

That should give you a start. The docs are being worked on as we speak, so they should hit very soon :slight_smile:

6 Likes