ionic-team / stencil-router-v2

Other
44 stars 13 forks source link

how to handle 404 pages #23

Open erwingeiger opened 3 years ago

erwingeiger commented 3 years ago

How can I create a route for a 404 page when the URL does not match?

bodinaren commented 3 years ago

Only the first matching route in Router.Switch will be rendered, so you can finish with a wildcard route.

<Route path={ /.*/ }>
  <app-page-not-found></app-page-not-found>
</Route>