const html = (baseEndpoint) => ` GraphQL Playground
Loading GraphQL Playground
`; const headers = { "Content-Type": "text/html" }; const handler = (request, { baseEndpoint }) => new Response(html(baseEndpoint), { headers }); module.exports = handler;