diff --git a/src/utils/body.ts b/src/utils/body.ts index 9640793d..b98f141d 100644 --- a/src/utils/body.ts +++ b/src/utils/body.ts @@ -42,6 +42,7 @@ export function readRawBody( event._requestBody || event.web?.request?.body || (event.node.req as any)[RawBodySymbol] || + (event.node.req as any).rawBody /* firebase */ || (event.node.req as any).body; /* unjs/unenv #8 */ if (_rawBody) { const promise = Promise.resolve(_rawBody).then((_resolved) => {