const HTML = String.raw` Pixelbound

PIXELBOUNDDOIS DESTINOS. UM HERÓI.

A Fenda roubou as cores do reino. Escolha um dos irmãos, atravesse mundos vivos e recupere o Coração de Prisma.

Gire o celular para jogar na horizontal
`; export default { async fetch(request) { const url = new URL(request.url); if (url.pathname === "/health") { return Response.json({ ok: true, game: "Pixelbound", version: "4.0.0" }); } if (url.pathname !== "/" && url.pathname !== "/index.html") { return new Response("Not found", { status: 404 }); } return new Response(HTML, { headers: { "content-type": "text/html; charset=UTF-8", "cache-control": "public, max-age=300", "x-content-type-options": "nosniff", "referrer-policy": "no-referrer", "permissions-policy": "camera=(), microphone=(), geolocation=()", "content-security-policy": "default-src 'none'; style-src 'unsafe-inline'; script-src 'unsafe-inline'; img-src data:; connect-src 'none'; font-src 'none'; media-src 'none'; frame-ancestors 'none'; base-uri 'none'; form-action 'none'" } }); } };