Skip to content

Commit

Permalink
refactor: 💡 improve custom data introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
heldrida committed Jun 10, 2024
1 parent bec5ef9 commit a83ce64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -727,9 +727,9 @@ Example usage:

## Custom data

Custom data is available by querying static data that is generated on build time. The data is provided by an integration process, placed in as an integration hook in the `astro.config.mjs`. These integrations are custom functions (hooks) that are declared in the `/integrations` directory.
Custom data is available as static data. The data is provided by an integration process, placed in as an integration hook in the main configuration file. These integrations are custom functions (hooks) that are declared in the `/integrations` directory.

The custom data is static, as the project is fully static (it means that the data is computed ahead of time and not dynamically on runtime) can be utilized by external applications, such as the Fleek Platform application dashboard that gets the latest blog posts.
Note that the custom data is static, as the project is fully static (it means that the data is computed ahead of time and not dynamically on runtime), but can be utilized by external applications as any other endpoint. For example, the Fleek Platform application dashboard requires the latest blog posts data.

### Get latest posts

Expand Down

0 comments on commit a83ce64

Please sign in to comment.