From 33f18ba7a98780a887d33e72936da57a6c58932a Mon Sep 17 00:00:00 2001 From: Tim Whitney Date: Tue, 30 Jul 2024 14:54:06 -0600 Subject: [PATCH] Remove link to self (#39052) The link is confusing because it is to the current page. This causes an issue when reading because it seems like you have to follow the link to learn more on the intro. --- docs/docs/reference/config-files/gatsby-node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference/config-files/gatsby-node.md b/docs/docs/reference/config-files/gatsby-node.md index ee4a51d9077db..c7d9289946d32 100644 --- a/docs/docs/reference/config-files/gatsby-node.md +++ b/docs/docs/reference/config-files/gatsby-node.md @@ -7,7 +7,7 @@ apiCalls: NodeAPI ## Introduction -Gatsby gives plugins and site builders many APIs for building your site. Code in the file `gatsby-node.js`/`gatsby-node.ts` is run once in the process of building your site. You can use its APIs to create pages dynamically, add data into GraphQL, or respond to events during the build lifecycle. To use the [Gatsby Node APIs](/docs/reference/config-files/gatsby-node/), create a file named `gatsby-node.js`/`gatsby-node.ts` in the root of your site. Export any of the APIs you wish to use in this file. +Gatsby gives plugins and site builders many APIs for building your site. Code in the file `gatsby-node.js`/`gatsby-node.ts` is run once in the process of building your site. You can use its APIs to create pages dynamically, add data into GraphQL, or respond to events during the build lifecycle. To use the Gatsby Node APIs, create a file named `gatsby-node.js`/`gatsby-node.ts` in the root of your site. Export any of the APIs you wish to use in this file. You can author the file in JavaScript (CommonJS or [ES Modules (ESM)](/docs/how-to/custom-configuration/es-modules/) syntax) or [TypeScript](/docs/how-to/custom-configuration/typescript/#gatsby-nodets).