diff --git a/functions/hello-world.js b/functions/hello-world.js index 6223a13..3d51a21 100644 --- a/functions/hello-world.js +++ b/functions/hello-world.js @@ -9,8 +9,10 @@ export async function onRequest(context) { data, // arbitrary space for passing data between middlewares } = context; - return new Response(JSON.stringify({ - message: 'Hello, worker!', - context, - }) + return new Response( + JSON.stringify({ + message: 'Hello, worker!', + context, + }) + ) }