v8go icon indicating copy to clipboard operation
v8go copied to clipboard

working really well. but...

Open sprappcom opened this issue 1 year ago • 0 comments

is there any possibility to support like cloudflare ES stuff? https://developers.cloudflare.com/workers/examples/return-html/

export default { async fetch(request) { const html = <!DOCTYPE html> <body> <h1>Hello World</h1> <p>This markup was generated by a Cloudflare Worker.</p> </body>;

return new Response(html, {
  headers: {
    "content-type": "text/html;charset=UTF-8",
  },
});

}, };

sprappcom avatar May 29 '24 01:05 sprappcom