website/README.md

12 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2020-11-28 05:07:26 +00:00
1. **`.prettierrc`**: This is a configuration file for [Prettier](https://prettier.io/). Prettier is a tool to help keep the formatting of your code consistent.
2020-11-27 16:08:32 +00:00
2020-11-28 05:07:26 +00:00
2. **`gatsby-browser.js`**: This file is where Gatsby expects to find any usage of the [Gatsby browser APIs](https://www.gatsbyjs.com/docs/browser-apis/) (if any). These allow customization/extension of default Gatsby settings affecting the browser.
2020-11-27 16:08:32 +00:00
2020-11-28 05:07:26 +00:00
3. **`gatsby-config.js`**: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins youd like to include, etc. (Check out the [config docs](https://www.gatsbyjs.com/docs/gatsby-config/) for more detail).
2020-11-27 16:08:32 +00:00
2020-11-28 05:07:26 +00:00
4. **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of the [Gatsby Node APIs](https://www.gatsbyjs.com/docs/node-apis/) (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process.
2020-11-27 16:08:32 +00:00
2020-11-28 05:07:26 +00:00
5. **`gatsby-ssr.js`**: This file is where Gatsby expects to find any usage of the [Gatsby server-side rendering APIs](https://www.gatsbyjs.com/docs/ssr-apis/) (if any). These allow customization of default Gatsby settings affecting server-side rendering.
2020-11-27 16:08:32 +00:00
2020-11-28 05:07:26 +00:00
6. **`README.md`**: A text file containing useful reference information about your project.