export default { async fetch(request) { const html = ` Site Coming Soon Coming Soon Our website is currently under construction. `; return new Response(html, { headers: { "content-type": "text/html;charset=UTF-8" }, }); }, };