From 1aaded9241e8fdd7e87e663994a1f73f8ad78532 Mon Sep 17 00:00:00 2001 From: Yonatan Bendahan Date: Tue, 5 Aug 2025 15:20:12 +0300 Subject: [PATCH] add "duplex: 'half'" to fetch stream example --- docs/guide/quick-start.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guide/quick-start.md b/docs/guide/quick-start.md index dec220f..a11933f 100644 --- a/docs/guide/quick-start.md +++ b/docs/guide/quick-start.md @@ -312,6 +312,7 @@ const output = new Output({ const uploadComplete = fetch('https://example.com/upload', { method: 'POST', body: readable, + duplex: 'half', headers: { 'Content-Type': output.format.mimeType, },