Skip to content

Commit 7fd887e

Browse files
authored
chore(docs): Gatsby functions update (#37941)
* chore: doc update on Gatsby functions * Update docs/docs/reference/functions/getting-started.md
1 parent 4a1b2ce commit 7fd887e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/docs/reference/functions/getting-started.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default function handler(
6464

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

67-
Read more about [supported data formats](/docs/reference/functions/middleware-and-helpers).
67+
Read more about [supported data formats](/docs/reference/functions/middleware-and-helpers) for information about support for Buffer and Stream via a custom `config`.
6868

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

214214
## Limitations
215215

216-
- Bundling in native dependencies is not supported at the moment
216+
- Bundling in native dependencies is not supported at the moment.
217+
- 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.

0 commit comments

Comments
 (0)