From 86a0c7b0f7133362b5a5358428fe8ca334fe394e Mon Sep 17 00:00:00 2001 From: Luis Alvarez D Date: Tue, 24 Nov 2020 20:21:51 -0500 Subject: [PATCH] Remove mention of the Next.js site repo from docs (#19504) Fixes https://github.com/vercel/next.js/issues/19503 --- docs/routing/dynamic-routes.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/routing/dynamic-routes.md b/docs/routing/dynamic-routes.md index 02c8e4128ddaf..f8a74550610f1 100644 --- a/docs/routing/dynamic-routes.md +++ b/docs/routing/dynamic-routes.md @@ -129,8 +129,6 @@ The `query` objects are as follows: { "slug": ["a", "b"] } // `GET /post/a/b` (multi-element array) ``` -> A good example of optional catch all routes is the Next.js docs, a single page called [pages/docs/[[...slug]].js](https://github.com/vercel/next-site/blob/master/pages/docs/%5B%5B...slug%5D%5D.js) takes care of all the docs you're currently looking at. - ## Caveats - Predefined routes take precedence over dynamic routes, and dynamic routes over catch all routes. Take a look at the following examples: