Skip to content

Commit 02c2765

Browse files
Merge branch 'main' into dev
2 parents e911a4a + 6c766a3 commit 02c2765

2 files changed

Lines changed: 11 additions & 14 deletions

File tree

pnpm-lock.yaml

Lines changed: 9 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ export function TServer() {
145145
method: req.method,
146146
headers: req.headers as any,
147147
body: req.method === "GET" || req.method === "HEAD" ? undefined : (req as any),
148-
});
148+
duplex: "half",
149+
} as any);
149150

150151
try {
151152
const response = await app.fetch(request);

0 commit comments

Comments
 (0)