Skip to content

Commit 9645eeb

Browse files
authored
docs(gatsby): Fix broken links (#22202)
1 parent 4e97b15 commit 9645eeb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/docs/write-pages.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ The dynamic files that are created are (all under the `.cache` directory).
6161

6262
This is a collection of page objects, created from redux `pages` namespace. For each page it includes the
6363

64-
- [componentChunkName](/docs/behind-the-scenes-terminology/#componentchunkname)
65-
- [jsonName](/docs/behind-the-scenes-terminology/#jsonname)
66-
- [path](/docs/behind-the-scenes-terminology/#path)
67-
- [matchPath](/docs/behind-the-scenes-terminology/#matchpath)
64+
- [componentChunkName](/docs/gatsby-internals-terminology/#componentchunkname)
65+
- [jsonName](/docs/gatsby-internals-terminology/#jsonname)
66+
- [path](/docs/gatsby-internals-terminology/#path)
67+
- [matchPath](/docs/gatsby-internals-terminology/#matchpath)
6868

69-
The pages are sorted such that those with `matchPath`s come before those without. This is to assist [find-page.js](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/cache-dir/find-page.js) in selecting pages via regex before trying explicit paths. See [matchPaths](/docs/behind-the-scenes-terminology/#matchpath) for more info.
69+
The pages are sorted such that those with `matchPath`s come before those without. This is to assist [find-page.js](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/cache-dir/find-page.js) in selecting pages via regex before trying explicit paths. See [matchPaths](/docs/gatsby-internals-terminology/#matchpath) for more info.
7070

7171
e.g
7272

@@ -85,7 +85,7 @@ e.g
8585

8686
## sync-requires.js
8787

88-
This is a dynamically generated JavaScript file that exports `components`. It is an object created by iterating over the `components` redux namespace. The keys are the [componentChunkName](/docs/behind-the-scenes-terminology/#componentchunkname) (e.g. `component---src-blog-2-js`), and the values are expressions that require the component. E.g. `/home/site/src/blog/2.js`. The file will look something like this:
88+
This is a dynamically generated JavaScript file that exports `components`. It is an object created by iterating over the `components` redux namespace. The keys are the [componentChunkName](/docs/gatsby-internals-terminology/#componentchunkname) (e.g. `component---src-blog-2-js`), and the values are expressions that require the component. E.g. `/home/site/src/blog/2.js`. The file will look something like this:
8989

9090
```javascript
9191
exports.components = {

0 commit comments

Comments
 (0)