Copy
import * as BunnySDK from "https://esm.sh/@bunny.net/[email protected]";
BunnySDK.net.http.serve(
async (request: Request): Response | Promise<Response> => {
const url = new URL(request.url);
const html = `<!DOCTYPE html>
<html>
<head>
<title>HTML Edgescript example</title>
</head>
<body>
<h1>Hello</h1>
<h2>there</h2>
<div>Lorem ipsum bla bla</div>
<div>from ${url.pathname}</div>
</body>
</html>`;
return new Response(html, {
headers: {
"content-type": "text/html",
},
});
},
);