diff --git a/src/client/index.ts b/src/client/index.ts index 6f210ae..a98807f 100644 --- a/src/client/index.ts +++ b/src/client/index.ts @@ -108,7 +108,13 @@ export class Twilio< }, ); - return new Response(null, { status: 200 }); + const emptyResponseTwiML = ` + +`; + + return new Response(emptyResponseTwiML, { status: 200, headers: { + 'Content-Type': 'application/xml', + } }); }), }); }