Skip to content

Commit

Permalink
Remove link to self
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
timodwhit authored and serhalp committed Jul 30, 2024
1 parent 5d48a98 commit 0d43167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/reference/config-files/gatsby-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down

0 comments on commit 0d43167

Please sign in to comment.