const data = {content: 'hello world',};async function handleRequest(request) {// Convert the JSON object to the String format.const result = JSON.stringify(data, null, 2);return new Response(result, {headers: {'content-type': 'application/json; charset=UTF-8',},});}addEventListener('fetch', event => {return event.respondWith(handleRequest(event.request));});

Feedback