Skip to content

Commit

Permalink
fix(docs): typo in adding-search-with-algolia (#20061)
Browse files Browse the repository at this point in the history
- prexifed => prefixed
- webinterface => web interface
  • Loading branch information
weensy authored and GatsbyJS Bot committed Dec 11, 2019
1 parent 9464c05 commit 5016071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/adding-search-with-algolia.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Since your .env file contains your real private API keys, it is considered a sec
```text:title=.env.example
# rename this file to .env and supply the values listed below
# also make sure they are available to the build tool (e.g. Netlify)
# warning: variables prexifed with GATSBY_ will be made available to client-side code
# warning: variables prefixed with GATSBY_ will be made available to client-side code
# be careful not to expose sensitive data (in this case your Algolia admin key)
GATSBY_ALGOLIA_APP_ID=insertValue
Expand Down Expand Up @@ -157,7 +157,7 @@ It might look a little intimidating at first, but basically you're just letting

Transformers allow you to modify the data returned by the queries to bring it into a format ready for searching. All you're doing here is 'flattening' posts and pages to 'unnest' the frontmatter fields (such as `author`, `date`, `tags`) but transformers could do much more for you if required. This makes the whole process of indexing your data really flexible and powerful. You could for instance use them to filter the results of your queries, format fields, add or merge them, etc.

If you've come this far, then the "backend" is done. You should now be able to run `gatsby build` and see your indices in Algolia's webinterface be flooded with your data.
If you've come this far, then the "backend" is done. You should now be able to run `gatsby build` and see your indices in Algolia's web interface be flooded with your data.

## Adding a search interface to your site

Expand Down

0 comments on commit 5016071

Please sign in to comment.