Answers for "ionic 5 fallback route"

1

ionic 5 fallback route

const routes: Route = [
  {path: "OtherPaths",component: OtherPathsComponent},
  {path: "PathNotFound", component: PathNotFoundComponent},
  {path: "**", redirectTo: "PathNotFound"}
]
Posted by: Guest on June-09-2020

Browse Popular Code Answers by Language