@vercel/node 5.0.2 → 5.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dev-server.mjs +1 -0
- package/dist/index.js +475 -455
- package/package.json +3 -3
package/dist/dev-server.mjs
CHANGED
@@ -841,6 +841,7 @@ async function createEdgeEventHandler(entrypointFullPath, entrypointRelativePath
|
|
841
841
|
const body = await serializeBody(request);
|
842
842
|
if (body !== void 0 && body.length) {
|
843
843
|
request.headers["content-length"] = String(body.length);
|
844
|
+
request.headers["transfer-encoding"] = void 0;
|
844
845
|
}
|
845
846
|
const url = new URL(request.url ?? "/", server.url);
|
846
847
|
const response = await undiciRequest(url, {
|