addEventListener("fetch", event => { event.respondWith(handleRequest(event.request)) }) async function handleRequest(request) { const html = ` Manhwa3s - Sắp Ra Mắt
Trạng thái: Đang phát triển

MANHWA3S

Chúng mình đang chuẩn bị những bộ truyện tuyệt vời nhất dành cho bạn. Hãy quay lại sớm nhé!

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