© 2026 Hedgehog Software, LLC
// functions/index.js export async function onRequestGet({ env }) { if (Math.floor(Math.random() * 50) < 50) { return env.ASSETS.fetch('/index'); } else { return env.ASSETS.fetch('/new-index'); } }