Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): doc update on Gatsby functions #37941

Merged
merged 2 commits into from
Apr 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/docs/reference/functions/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function handler(

Query strings and common body content types are automatically parsed and available at `req.query` and `req.body`

Read more about [supported data formats](/docs/reference/functions/middleware-and-helpers).
Read more about [supported data formats](/docs/reference/functions/middleware-and-helpers) for information about support for Buffer and Steam via a custom `config`.
aghreed marked this conversation as resolved.
Show resolved Hide resolved

```js:title=src/api/contact-form.js
export default function contactFormHandler(req, res) {
Expand Down Expand Up @@ -213,4 +213,5 @@ Shadowing with functions works similar to how shadowing works in general. You ca

## Limitations

- Bundling in native dependencies is not supported at the moment
- Bundling in native dependencies is not supported at the moment.
- Creating your own custom bundler (webpack/parcel) config is not supported at the moment. You can however pre-bundle by using a "prebuild" `package.json` script command to accomplish custom configuration.