Ionic 3 PWA unmatch deeplinks

Ionic 3.9.2

IonicModule.forRoot(MyApp, {
backButtonText: ‘’,
preloadModules: true
}, {
links: [
{ component: InicioPage, name: ‘inicio’, segment: ‘inicio’ },
{ component: BlogPage, name: ‘blog’, segment: ‘blog’ },
{ component: PostPage, name: ‘post’, segment: ‘blog/:id’, defaultHistory: [BlogPage] },
{ component: NotFoundPage, name: ‘notfound’, segment: ‘notfound’, defaultHistory: [InicioPage] },
]
})

there is any way to assign NotFoundPage componet to unmatch routes?(like angular **)