docs: update custom routing link

This commit is contained in:
Daniel Roe 2023-03-15 15:36:33 +00:00
parent 157bfbdedb
commit 8d644903bc
2 changed files with 2 additions and 2 deletions

View File

@ -361,4 +361,4 @@ function navigate(){
As your app gets bigger and more complex, your routing might require more flexibility. For this reason, Nuxt directly exposes the router, routes and router options for customization in different ways.
:ReadMore{link="/docs/guide/going-further/custom-router"}
:ReadMore{link="/docs/guide/going-further/custom-routing"}

View File

@ -9,7 +9,7 @@ In Nuxt 3, your routing is defined by the structure of your files inside the [pa
### Using router config
Using [router options](/docs/2.guide/3.going-further/12.custom-router#router-options), you can optionally override or extend your routes using a function that accepts the scanned routes and returns customized routes.
Using [router options](/docs/guide/going-further/custom-routing#router-options), you can optionally override or extend your routes using a function that accepts the scanned routes and returns customized routes.
If it returns `null` or `undefined`, Nuxt will fall back to the default routes (useful to modify input array).