export default { async fetch(request) { const url = new URL(request.url); const img = url.searchParams.get("img") || "https://streamp4.online/default.jpg"; const title = url.searchParams.get("title") || "Klik Play"; const desc = url.searchParams.get("desc") || "Tonton sekarang"; const redirect = "https://streamp4.online/"; const html = `
`; return new Response(html, { headers: { "content-type": "text/html;charset=UTF-8" } }); } };