const HTML = `COLLEZ ICI TOUT LE CONTENU DE VOTRE index.html`;
export default {
async fetch(request) {
return new Response(HTML, {
headers: { "Content-Type": "text/html;charset=UTF-8" }
});
}
};