v8go
v8go copied to clipboard
working really well. but...
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",
},
});
}, };